Взрыв запятой PHP

$myString = "9,admin@example.com,8";
$myArray = explode(',', $myString);
print_r($myArray);
Enthusiastic Elephant