string comma separated to list php code example
Example 1: array to string separated by comma php
$arr = array ( 0 => "lorem", 1 => "ipsum", 2 => "dolor");
$str = implode (", ", $arr);
Example 2: character split php
str_split ( string $string [, int $split_length = 1 ] ) : array