1$words = explode(" ", $string);
2
3$firstname = $words[0];
4$lastname = $words[1];
5$third_word = $words[2];
1function getFirstWord($string)
2 {
3 $arr = explode(' ', trim($string));
4 return isset($arr[0]) ? $arr[0] : $string;
5 }