webHauser Blog

Icon

Welcome to webHauser weblog

Better last word function


function lastword($theString)
{
$stringParts = explode(" ", $theString);
return array_pop($stringParts);
}

Leave a Reply

You must be logged in to post a comment.