要查找字符串中數字的個數,可以使用PHP中的preg_match_all函數來實現。以下是一個示例代碼:
$str = "Hello 123 World456";
preg_match_all('!\d+!', $str, $matches);
$count = count($matches[0]);
echo "字符串中數字的個數為: " . $count;
在上面的示例中,先定義了一個包含數字的字符串$str。然后使用preg_match_all函數來匹配字符串中的數字,將匹配結果存儲在$matches數組中。最后通過count函數來獲取匹配到的數字個數,并輸出結果。