过滤分隔的电话号码字符串

问题描述 投票:0回答:1

我想过滤类似

2338034444232, 07065716184,0816272721
的内容。

电话号码用逗号分隔,我希望我的最终产品类似于 '2338034444232,2338034444232,2338034444232`。

php regex phone-number sanitization
1个回答
0
投票
$userinput="
    I believe Mr. Putin's number is 1234567890123 only differing slight
    from mine 1234567890124. I tried calling him 42 times but he won't answer.
    ";

$regex="/[0-9]{13}/";

preg_match_all($regex,$userinput,$out);


foreach($out[0] as $o){

    echo $o;
    echo ", ";
}

现在如果用户打电话给先生。 Putin 1234567890124次你就会遇到问题。

这是您正在寻找的东西吗?

© www.soinside.com 2019 - 2024. All rights reserved.