我得到这种格式的输出
Array ( [0] => Life [1] => living [2] => Health )
我想要这种格式的输出
Life,living,Health
如何以这种格式实现上述输出?
我得到这种格式的输出
Array ( [0] => Life [1] => living [2] => Health )
我想要这种格式的输出
Life,living,Health
如何以这种格式实现上述输出?
使用php 中可用的implode函数
$yourRequiredString = implode (",", $array);