Text vor dem letzten Raum -PHP extrahieren

 $string = "hello world again";
 echo substr($string, 0, strripos($string, ' '));//hello world
King Pinaster