Whats the fastest possible way to do this?
I think the code below works, but I'm sure there's a faster way to achieve what I want:
$words = explode(" ", $string);
if(!empty($words[1]) $words[1] = '<span>'.$words[1].'</span>';
$string = implode(" ", $words);
What do you think?