Jesus · Bible · HTML · CSS · JS · PHP · SVG · Applications

strrev

Description

The strrev of String for PHP reverse a string.

Syntax

strrev ( string $string ) : string

Parameters

string

The string to be reversed.

Return

Returns the reversed string.

Examples

1

<?

$string = "Hello";

$return = strrev($string);

echo $return;

?>
olleH
HomeMenu