<?php // Store them as key/value pairs with the search and replacement strings $wordsList = [ 'frog' => 'sock', 'Nock' => 'crock', ]; $message = str_replace( array_keys($wordsList), // Get all keys as the search array $wordsList, // The replacements "frog frog Nock Nock" ); echo $message;
You have javascript disabled. You will not be able to edit any code.