Extraer texto antes del último espacio PHP
$string = "hello world again";
echo substr($string, 0, strripos($string, ' '));//hello world
King Pinaster
$string = "hello world again";
echo substr($string, 0, strripos($string, ' '));//hello world