我有一个函数:函数从字符串行返回数字。
function get_numerics ($str) {
preg_match_all('/\d+/', $str, $matches);
return $matches[0];
}
我需要将数字放入我的 php 文件中的数组中。怎么做?
$counter = $user_count[$sk]; //$user_count[$sk] gives me a string line
//$user_count[$sk] is "15,16,18,19,18,17" - And i need those numbers seperated to an array
$skarray[] = get_numerics($counter); //Something is wrong?
Explode 可以工作,但 $user_count[$sk] 行可能是 "15, 16, 19, 14,16"; 即它可能包含也可能不包含空格。