📌  相关文章
📜  在 php 代码示例中突出显示搜索文本

📅  最后修改于: 2022-03-11 14:54:27.940000             🧑  作者: Mango

代码示例1
function highlightWords($text, $word){
    $text = preg_replace('#'. preg_quote($word) .'#i', '\\0', $text);
    return $text;
}

//function calling
highlightWords($desc, $search_word);