What would be the best way to reverse the order of a string so for instance,
\'Hello everybody in stackoverflow\'
becomes
\
In prose that is:
$words = explode(' ', $string);
$reversed_string = implode(' ', array_reverse($words));
Reading the whole list of string and array functions in PHP is VERY helpful and will save tons of time.