function getFirstWord($string) { $arr = explode(' ', trim($string)); return isset($arr[0]) ? $arr[0] : $string; }