我想比较数字数组的每个数字。像:5450 ...我想比较每个数字,如:5,4,5,0单独与其他数字。因为我想转换数字数字字符串中的这个数字字符串吗?
答案 0 :(得分:3)
您可以使用str_split将字符串转换为数组
例如:
<?php
$str="5450";
$arr=str_split($str);
print_r($arr);
?>
输出:
Array ( [0] => 5 [1] => 4 [2] => 5 [3] => 0 )
答案 1 :(得分:0)
您可以使用preg-split
- 请参阅此处的示例二:http://us3.php.net/manual/en/function.preg-split.php