Skip to content

Instantly share code, notes, and snippets.

@dustinlakin
Created April 17, 2012 16:05
Show Gist options
  • Save dustinlakin/2407198 to your computer and use it in GitHub Desktop.
Save dustinlakin/2407198 to your computer and use it in GitHub Desktop.
Reverse Text
<?php
function reverseText($text){
$arr = explode(" ", $text);
$result = "";
while($temp = array_pop($arr))
$result .= $temp . " ";
return $result;
}
$text = "The cat in the hat";
echo reverseText($text);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment