Skip to content

Instantly share code, notes, and snippets.

@alnorris
Last active August 29, 2015 14:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alnorris/bee5b075a6f39a70ae1b to your computer and use it in GitHub Desktop.
Save alnorris/bee5b075a6f39a70ae1b to your computer and use it in GitHub Desktop.
<?php
$msg = "Hello World!";
for($i = 0; $i < (strlen($msg)-1)/2; $i++) {
$temp = $msg[$i];
$msg[$i] = $msg[strlen($msg)-1-$i];
$msg[strlen($msg)-1-$i] = $temp;
}
print $msg;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment