How to reverse a string in PHP

The strrev() function is an built-in function in PHP which is used to reverse strings.

Syntax:

strrev(string)

string – This parameter is required. It specifies the string to reverse.

Example:

<?php
echo strrev("PHP Tutorials!");     // Output: "!slairotuT PHP"
?>

Chockalingam