×
Home About Us Products Services News Free Scripts Contact
news php scripts and software

PHP example - How to reverse a string?


PHP - How to reverse a string?

You may use the special PHP function strrev
 
<?php
 
$myText="ALLEGRO";
 
echo strrev($myText);
 
?>
 
will display:
 
ORGELLA

Category: PHP

 
<< Go back