w3resource

PHP: strrev() function

Description

The strrev() function is used to reverse a string.

Version:

(PHP 4 and above)

Syntax:

strrev(main_string)

Parameter:

Name Description Required /
Optional
Type
main_string The string to be reversed. Required String

Return value:

The reversed string.

Value Type: String.

Pictorial Presentation

string_strrev

Example:

<?php
$main_string='w3resource.com';
echo strrev($main_string);
?>

Output:

moc.ecruoser3w

View the example in the browser

See also

PHP Function Reference

Previous: strrchr
Next: strripos



Follow us on Facebook and Twitter for latest update.