如何将php数字字符串转换为数字数组

时间:2014-01-02 09:48:18

标签: php arrays string

我想比较数字数组的每个数字。像:5450 ...我想比较每个数字,如:5,4,5,0单独与其他数字。因为我想转换数字数字字符串中的这个数字字符串吗?

2 个答案:

答案 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