突出显示文本中的搜索词
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了突出显示文本中的搜索词相关的知识,希望对你有一定的参考价值。
Highlight Search Terms in Text
function HighlightTerms($text_string,$keywords) { //this function searches for words from the keywords, and finds matches in the text, //and highlights (bolds) them. like google does. // $text_sting: the text from which you want to highlight and return... // $keywords: either string or array or words that should be highlighted in the text. //explode the keywords } //find matches $text_string = str_replace($items[$y][0],'<span class="highlight">' . $items[$y][0] . '</span>',$text_string); } } } } return $text_string; }
以上是关于突出显示文本中的搜索词的主要内容,如果未能解决你的问题,请参考以下文章