Skip to content

Instantly share code, notes, and snippets.

@alxfv
Created August 25, 2014 19:28
Show Gist options
  • Save alxfv/b081080378f321fc9624 to your computer and use it in GitHub Desktop.
Save alxfv/b081080378f321fc9624 to your computer and use it in GitHub Desktop.
String reverse
<?php
for ($i = 0, $j = strlen($s) - 1; $i < strlen($s) / 2; $i++, $j--) {
$c = $s[$i];
$s[$i] = $s[$j];
$s[$j] = $c;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment