我想看到我的字符串中的所有电话号码。现在在数组“匹配”中只有一个数字,我怎么才能得到数组中所有的数字呢?

$str = "djvdsfhis 0647382938 rdfrgfdg tel:0647382938 rfgdfgfd 06 47 38 29
38 fdgdfrggfd tel:06-47382938 cxgvfdgsfdc";
$arr = '~\d{2}-\d{8}|\d{10}~';
$success = preg_match($arr, $str, $match);
if ($success) {
    echo "Match: ".$match[0]."<br />";
    print_r($match);
}

我得到这个作为输出:
djvdsfhis ffgfg 0647382938 rdfrgfdg tel:0647382938 rfgdfgfd 06 47 38 29 38 fdgdfrggfd tel:06-47382938 cxgvfdgsfdc

Match: 0647382938
Array ( [0] => 0647382938 )

但我想要这样的阵列:
Array ( [0] => 0647382938 [1] => 0647382938 [2] => 06-47382938

最佳答案

你应该使用preg_match_all。它将输出一个包含正则表达式所有结果的数组,在本例中是一个数字数组。

$str = "djvdsfhis 0647382938 rdfrgfdg tel:0647382938 rfgdfgfd 06 47 38 29
38 fdgdfrggfd tel:06-47382938 cxgvfdgsfdc";
$arr = '~\d{2}-\d{8}|\d{10}~';
$success = preg_match_all($arr, $str, $match);
if ($success) {
    print_r($match);
}

在这里测试:
http://sandbox.onlinephpfunctions.com/code/350d10b1be46ce3a5851d7671750bac28f9110f0

08-19 16:51