Skip to content

Instantly share code, notes, and snippets.

@ibolmo
Forked from asteig/reverse.php
Created February 5, 2010 00:35
Show Gist options
  • Save ibolmo/295319 to your computer and use it in GitHub Desktop.
Save ibolmo/295319 to your computer and use it in GitHub Desktop.
:P
<?php
//reverse string algorithm
function reverse($string) {
return implode('', array_reverse(str_split($string)));
}
echo reverse("mathematics");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment