Some time ago during a job interview I got the task to print a string in reverse order in PHP. Here i am writing program for print string in revers order using strrev() function.
<?php $str = 'This is string Print In Revers Order'; echo strrev(str); ?>
<?php $s = 'This is string Print In Revers Order'; for ($i = 0, $length = strlen($s); $i < $length; $i++) { echo $s{$length - $i - 1}; } ?>
<?php $str = 'This is string Print In Revers Order'; for($i=strlen($str)-1, $j=0; $j<$i; $i--, $j++) { list($str[$j], $str[$i]) = array($str[$i], $str[$j]); } echo $str; ?>
My name is Mukesh Jakhar and I am a Web Application Developer and Software Developer, currently living in Jaipur, India. I have a Master of Computer Application in Computer Science from JNU Jaipur University. I loves to write on technology and programming topics. Apart from this, I love to travel and enjoy the beauty of nature.