This site is mobile accessible. Press the "Tap Here" button to use a different font-size.


Smartphone icons created by Freepik - Flaticon

PHP String Functions

strrev() - Reverse a String

!dlroW olleH

<?php
// Reverse a String
$x = "Hello World!";
echo strrev($x);
?>