How can I use the strrev function to reverse a string in PHP? Example code: - Biz Tech

How can I use the strrev function to reverse a string in PHP? Example code:

Listen
$string = "Hello World";

$reversed_string = strrev($string);

echo $reversed_string;