The strrev() function is an built-in function in PHP which is used to reverse strings.
strrev(string)
string – This parameter is required. It specifies the string to reverse.
<?phpecho strrev("PHP Tutorials!"); // Output: "!slairotuT PHP"?>