Contact: aviboots(AT)netvision.net.il
39,912 questions
51,844 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 */