w3resource

PHP: strrev() function

PHP: Reverse a string

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



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://www.w3resource.com/php/function-reference/strrev.php