Skip to content

Instantly share code, notes, and snippets.

@michael34435
Last active August 29, 2015 14:05
Show Gist options
  • Save michael34435/735d7427d63af32701c4 to your computer and use it in GitHub Desktop.
Save michael34435/735d7427d63af32701c4 to your computer and use it in GitHub Desktop.
function reverse(&$s)
{
$len = strlen($s);
for ($count = 0; $count < $len; $count ++) {
$s = substr($s, 0, $count) . substr($s, -1) . substr($s, $count, $len - 1 - $count);
}
}
@michael34435
Copy link
Author

for reverse string.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment