Создать массив из строки с запятой php

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