strrev
strrev
Reverse a string
string **strrev** string $string
Returns , reversed.
string
stringThe string to be reversed.
Returns the reversed string.
**Voorbeeld: Reversing a string with **
<?php
echo strrev("Hello world!"); // outputs "!dlrow olleH"
?>