如何从数组中获取逗号分隔结果

时间:2013-05-12 16:36:32

标签: php codeigniter

我正在以这种格式获得输出

Array ( [0] => Life [1] => living [2] => Health )

我想要这种格式的输出 Life,living,Health如何以这种格式实现上述输出?

1 个答案:

答案 0 :(得分:4)

使用php

中提供的implode功能
$yourRequiredString = implode (",", $array);