explode comma php

35

$myString = "9,[email protected],8";
$myArray = explode(',', $myString);
print_r($myArray);

Comments

Submit
0 Comments