我已经尝试了一切,但答案可能很简单。$data['phone']
例如,变量是954a23589
,我只想要数字,所以很难得到它们。
$phoneW = strval($data['phone']);
preg_match_all('!\d+!', $phoneW, $matches);
print_r(array_values($matches)); echo '<br /><br />';
输出是
Array ( [0] => Array ( [0] => 954 [1] => 23589 ) )
我希望他们每个人都作为字符串或整数(没关系)。