Explotar coma php
$myString = "9,[email protected],8";
$myArray = explode(',', $myString);
print_r($myArray);
Enthusiastic Elephant
$myString = "9,[email protected],8";
$myArray = explode(',', $myString);
print_r($myArray);
$array = explode(' ', $string);
$array = str_split($string);
parse_str(unserialize($string_type_array), $array);
var_dump($array);
print_r(explode(',',$yourstring));
explode(" ","Geeks for Geeks")