Reversing Strings : strrev « String « PHP






Reversing Strings

 
<?php
  $astring = "Hello World";
  echo strrev ($astring);
?>
  
  








Related examples in the same category

1.Reversing Strings: string strrev ( string string )
2.Reversing a string by byte
3.Truncating Text on Word Boundaries