strrev
PHP function
Edit on GitHub ✎
(PHP 4, PHP 5, PHP 7, PHP 8)
Reverse a string
Description
strrev(string $string): string
Returns string, reversed.
Parameters
stringThe string to be reversed.
Return Values
Returns the reversed string.
Examples
Reversing a string with strrev()
php
<?php
echo strrev("Hello world!"); // outputs "!dlrow olleH"
?>