تابع str_replace بسیار انعطافپذیر است و این امکان را به شما میدهد:
$phrase = "You should eat fruits, vegetables, and fiber every day.";
$healthy = array("fruits", "vegetables", "fiber");
$yummy = array("pizza", "beer", "ice cream");
$newphrase = str_replace($healthy, $yummy, $phrase);
پس از اجرای اسکریپت فوق متغییر newphrase حاوی رشته زیر می باشد:
You should eat pizza, beer, and ice cream every day