<?php $wordsList = [ ['frog', 'Nock'], // All search strings ['sock', 'crock'], // All replacements ]; $message = str_replace( $wordsList[0], // All search strings $wordsList[1], // The replacements strings "frog frog Nock Nock" ); echo $message;
You have javascript disabled. You will not be able to edit any code.