Advertisement
Guest User

Untitled

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