3v4l.org

run code in 300+ PHP versions simultaneously
<?php function replacelist($thetext) { $searchfor = array("crackers","soup"); $replacewith = array("shapes","stew"); $newtext = str_replace($searchfor, $replacewith, $thetext); return $newtext." - plus some test text"; } ?> <?php $mytext="Animal crackers in my soup"; $newphrase = replacelist($mytext); echo $newphrase; ?>

preferences:
53.18 ms | 402 KiB | 5 Q