<!DOCTYPE html>
<html lang="en">
<head>
<title>Example of Reversing a String in PHP</title>
</head>
<body>
<?php
echo strrev("Hello world!");
?>
</body>
</html>