THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

PHP strrev() Function

PHP String Reference PHP String Reference

Example

Reverse the string "Hello World!":

<?php
echo strrev("Hello World!");
?>
Run example »

Definition and Usage

The strrev() function reverses a string.


Syntax

strrev(string)

Parameter Description
string Required. Specifies the string to reverse

Technical Details

Return Value: Returns the reversed string
PHP Version: 4+

PHP String Reference PHP String Reference