Last active
August 29, 2015 14:05
-
-
Save michael34435/735d7427d63af32701c4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
for reverse string.