Update string.utils.php

This commit is contained in:
Namhyeon Go 2019-05-03 14:41:04 +09:00 committed by GitHub
parent e187c7dbe1
commit 3819217e72
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -171,6 +171,12 @@ if(!check_function_exists("parse_pipelined_data")) {
}
}
if(!check_function_exists("get_highlighted_html_by_word")) {
function get_highlighted_html_by_word($word, $text) {
return preg_replace("/\w*?$word\w*/i", "<strong class=\"highlight\">$0</strong>", $text);
}
}
if(!check_function_exists("eregi_compatible")) {
function eregi_compatible($pattern, $subject, &$matches=NULL) {
return preg_match(sprintf("/%s/i", $pattern), $subject, $matches);