3v4l.org

run code in 300+ PHP versions simultaneously
<?php function bolder($word, $sentence){ $result = preg_replace('~\b(' . preg_quote($word, '~') . ')\b~i', '<span class="found">$1</span>', $sentence); return $result; } $query = 'google'; $description = 'google this and that okay'; $thing = bolder($query, $description); echo $thing;

preferences:
36.07 ms | 402 KiB | 5 Q