fork download
  1. <?php
  2.  
  3. function highlight($text, $words) {
  4. preg_match_all('~\w+~', $words, $m);
  5. if(!$m)
  6. return $text;
  7. $re = '~' . implode('|', $m[0]) . '~i';
  8. return preg_replace($re, '<b style="color:white;background-color:red;border-radius:2px;">$0</b>', $text);
  9. }
  10. $text = "this is a very famouse poem written by liegh hunt the post want to impress upon the importance";
  11. $words ="very written hu want impor";
  12. echo highlight($text, $words);
Success #stdin #stdout 0.01s 52488KB
stdin
Standard input is empty
stdout
this is a <b style="color:white;background-color:red;border-radius:2px;">very</b> famouse poem <b style="color:white;background-color:red;border-radius:2px;">written</b> by liegh <b style="color:white;background-color:red;border-radius:2px;">hu</b>nt the post <b style="color:white;background-color:red;border-radius:2px;">want</b> to impress upon the <b style="color:white;background-color:red;border-radius:2px;">impor</b>tance