Extraire du texte avant le dernier espace 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