Php Split String en el primer espacio
$array = explode(' ', $string, 2);
Elegant Emu
$array = explode(' ', $string, 2);