pastebin

Paste Search Dynamic
Recent pastes
replaceThis
  1. <?php
  2. $replaceThis = array(
  3. 'old word' => 'new word',
  4. 'was' => 'it',
  5. 'past' => 'future',
  6. );
  7.  
  8. $originalText = "every old word was a thing of the past...";
  9. $replacedText = str_replace(array_keys($replaceThis), $replaceThis, $originalText);
  10. echo $replacedText;
  11. ?>
Parsed in 0.043 seconds