PHP : Remplacer une partie d'une chaîne par une autre en php avec str_replace()


/ Published in: PHP
Save to your folder(s)



Copy this code and paste it in your HTML
  1. $str = "hello world !";
  2. $str = str_replace("world", "brian", $str);
  3. echo $str; // hello brian !

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.