Contact: aviboots(AT)netvision.net.il
40,756 questions
53,124 answers
573 users
$s = "PHP java and c programmming"; $words = ["PHP", "java"]; $replace = ["Python", "c++"]; $s = str_replace($words, $replace, $s); echo $s; /* run: Python c++ and c programmming */