在php中用逗号分隔数字的每个数字

时间:2017-05-24 03:35:07

标签: php arrays string

My String就像这样

$str="12345"

我想要

$str1 = "1,2,3,4,5"

4 个答案:

答案 0 :(得分:1)

使用AreaLearning然后str_split

展开数组
implode

会给你

implode(str_split('testing'), ',')

同样为1234

答案 1 :(得分:0)

试试这个,检查 live demo

implode(',', str_split($str));

答案 2 :(得分:0)

$strLen = strlen($s);
$o = '';
for($i =0; $i < $strLen; $i++) {
      $comma = ($i < $strLen) ? ' , ' : '';
      $o .= $strLen[$i] . $comma;
 }
 echo $o;

答案 3 :(得分:0)

没有爆炸或内爆:

$str="123456789";
echo substr(chunk_split($str,1,","),0,-1);