php convert comma separated string to array code example
Example 1: explode comma php
$myString = "9,[email protected],8";
$myArray = explode(',', $myString);
print_r($myArray);
Example 2: array to string separated by comma php
$arr = array ( 0 => "lorem", 1 => "ipsum", 2 => "dolor");
$str = implode (", ", $arr);
Example 3: how to convert array to string with commas in php
$tags = implode(', ', array('tag1','tag2','tag3','tag4'));
Example 4: character split php
str_split ( string $string [, int $split_length = 1 ] ) : array