Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2022
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.24 KB | None | 0 0
  1. function remplacerLesLettres($string)
  2.     {
  3.         $output = str_replace(array('e','E',),3,$string);
  4.         $output = str_replace(array('i','I'),1,$output);
  5.         $output = str_replace(array('o','O'),0,$output);
  6.         echo $output;
  7.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement