function getLastWord($string) { $string = explode(' ', $string); $last_word = array_pop($string); return $last_word; }