| 
 
  7.102.76 strrev()Inverse une chaîne[ Exemples avec strrev ]   PHP 3, PHP 4  
string
 strrev (
string
 
string
 )
strrev   retourne la chaîne
      
string
 , après avoir changé l'ordre des caractères.
      
 | Inverser une chaîne avec strrev |  
<?php echo strrev("Bonjour le monde!");  // affiche "ednom el ruojnoB" ?>
 
 |   
 |