Latest web development tutorials
 

PHP strrev() Function

< 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