What is the strrev() function?
strrev() function is uses for reversing a string. strrev() function is also used for reversing a number.
In the given below example you can easily understand the use of strrev() function
<?php
//here call the strrev() function
echo strrev("How are you");
?>
so when you will print "How are you".
output will come:
uoy era woH (revrese off all string)
0 Comment(s)