6 lines
134 B
PHP
6 lines
134 B
PHP
<?php
|
|
|
|
function st_language_colorize_phrase($phrase, $search)
|
|
{
|
|
return preg_replace('/' . $search . '/i', '<b>$0</b>', $phrase);
|
|
} |