php_string_rev

               STRING REVERSE IN PHP
<
!DOCTYPE html>

<html>
<body>

<?php
echo strrev("Hello world!");
?>
 
 
</body>
</html>

o/p : !dlrow olleH

Comments :

Post a Comment