3v4l.org

run code in 300+ PHP versions simultaneously
<?php $word="over"; $replaceWith = "<span class=\"found\">".$word."</span>"; $sentence = "Hello, did you hear the quick brown fox jumped over the lazy dog"; // Remove everything before first occurrence $sentence = stristr($sentence, $word); // Bold $sentence = str_replace($word, $replaceWith, $sentence); echo $sentence;

preferences:
36.23 ms | 402 KiB | 5 Q