My String就像这样
$str="12345"
我想要
$str1 = "1,2,3,4,5"
答案 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);