Skip to content

Instantly share code, notes, and snippets.

@asteig
Created February 4, 2010 22:21
Show Gist options
  • Save asteig/295201 to your computer and use it in GitHub Desktop.
Save asteig/295201 to your computer and use it in GitHub Desktop.
<?php
//reverse string algorithm
function reverse($string) {
$len = strlen($string);
$i = 0;
while($i <= $len) {
$a = substr($string, -1, 1);
$string = substr_replace($string, $a, $i, 0);
$string = substr($string, 0, $len);
$i++;
}
return $string;
}
$string = reverse("mathematics");
print $string;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment