Problem Statement
Which PHP function can reverse a string?
Explanation
The strrev function reverses the order of characters in a string and returns the reversed string.
Code Solution
SolutionRead Only
echo strrev('Hello'); // olleHPractice Sets
This question appears in the following practice sets:
