php8.5
Home/ Manual/ strings / functions/ strrev

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

string

The 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"
?>

Source: reference/strings/functions/strrev.xml · from the official PHP manual (php/doc-en)