Reverse String in PHP
Advertisements
Reverse String Program in PHP
strrev() function is used to reverse any given string in php, but here we perform this operation without using strrev() function.
Reverse String Program in PHP
<?php $string = "hitesh"; $length = strlen($string); for ($i=($length-1) ; $i >= 0 ; $i--) { echo $string[$i]; } ?>
Output
hsetih
Google Advertisment