What would be the best way to reverse the order of a string so for instance,
\'Hello everybody in stackoverflow\'
becomes
\
$tmp = explode(' ', $string); array_reverse($tmp); $string = implode(' ', $tmp);