fork download
  1. <?php
  2. $str = "my bird is funny and is a pipe is ispod";
  3. $keyword = "bird fun is";
  4. $keyword = implode('|',explode(' ',preg_quote($keyword)));
  5. var_dump($keyword);
  6. $str = preg_replace("/($keyword)/i","<b>$0</b>",$str);
  7. echo $str;
Success #stdin #stdout 0.02s 26196KB
stdin
Standard input is empty
stdout
string(11) "bird|fun|is"
my <b>bird</b> <b>is</b> <b>fun</b>ny and <b>is</b> a pipe <b>is</b> <b>is</b>pod