突出显示多个关键字高级
Highlight multiple keywords advanced
我尝试了这里回答的大部分解决方案,但他们都有同样的问题,这就是我的问题。
我使用此功能来突出显示搜索结果:
function highlightWords($searchtext, $searchstrings){
$searchstrings = preg_replace('/\s+/', ' ', trim($searchstrings));
$words = explode(' ', $searchstrings);
$highlighted = array();
foreach ( $words as $word ){
$highlighted[] = "<font color='#00f'><b>".$word."</b></font>";
}
return str_replace($words, $highlighted, $searchtext);
}
当我搜索包含 2 个或多个用空格分隔的字符串的文本并且其中任何一个包含来自我突出显示的数组的任何 HTML 代码时,就会出现问题。
例如,searchtext="I have max system performance" AND searchstrings="max f"
在第一次迭代中,foreach 会将每个 max 替换为 <font color='#00f'><b>max</b></font>
在第二次迭代中,它将每个 f 替换为 <font color='#00f'><b>f</b></font>
第二次迭代也将替换在第一次替换中插入的 html 标签!
所以它也会替换字符串 <font color='#00f'>
中的 f?
有什么建议吗?
谢谢
米多拉格
尝试以下方法
foreach ( $words as $word ){
if(strlen ($word)>2)
{
$highlighted[] = "<font color='#00f'><b>".$word."</b></font>";
}
}
也许这是适合您的解决方案?
function highlightWords($searchtext, $searchstrings){
$searchstrings = preg_replace('/\s+/', ' ', trim($searchstrings));
$words = explode(' ', $searchstrings);
$highlighted = array();
foreach ( $words as $word ){
$highlighted[] = '<span class="highlighted-word">'.$word.'</span>';
}
return str_replace($words, $highlighted, $searchtext);
}
echo highlightWords('I have max system performance', 'max f');
?>
您需要在您的主页上添加一点CSS:
<style>
.highlighted-word {
font-weight: bold;
}
</style>
输出:
我有 max 系统 performance
---
更新:
如果你想突出显示完整的单词,请看这个:
function highlightCompleteWords($searchtext, $searchstrings){
$searchstrings = preg_replace('/\s+/', ' ', trim($searchstrings));
$words = explode(' ', $searchstrings);
$highlighted = array();
foreach ( $words as $word ){
$searchtext = preg_replace("/\w*?".preg_quote($word)."\w*/i", "<span class='highlighted-word'>[=12=]</span>", $searchtext);
}
return $searchtext;
}
echo highlightCompleteWords('I have max system performance', 'max f');
输出:我有 max 系统 performance
我可能不完全理解你的问题,但我想你想突出显示搜索字符串中的每个匹配词。
你可能只是做这样的事情:
$returnString = $searchtext;
foreach ( $words as $word ){
$returnString = preg_replace('/\b'.$word.'\b/i', "<font color='#00f'><b>[=10=]</b></font>", $returnString);
}
return $returnString;
这将输出:"I have max system performance"
因为 "f" 无法匹配
编辑 - 如果您还想匹配单词的一部分。
有点难看,但我相信这会为你分叉
$returnString = $searchtext;
foreach ( $words as $word ){
if(strlen($word)>2){
$returnString = preg_replace('/'.$word.'/i', "§§§[=11=]###", $returnString);
}
}
$returnString = preg_replace("/\§§§/","<font color='#00f'><b>", $returnString);
$returnString = preg_replace("/\###/","</b></font>", $returnString);
return $returnString;
<?php
$searchtext = "I have max system performance";
$searchstrings = "max f";
$searchstrings = preg_replace('/\s+/', ' ', trim($searchstrings));
$words = explode(' ', $searchstrings);
$highlighted = array();
foreach ( $words as $word ){
$highlighted[] = "<font color='#00f'><b>".$word."</b></font>";
}
echo strtr($searchtext, array_combine($words, $highlighted));
?>
我尝试了这里回答的大部分解决方案,但他们都有同样的问题,这就是我的问题。
我使用此功能来突出显示搜索结果:
function highlightWords($searchtext, $searchstrings){
$searchstrings = preg_replace('/\s+/', ' ', trim($searchstrings));
$words = explode(' ', $searchstrings);
$highlighted = array();
foreach ( $words as $word ){
$highlighted[] = "<font color='#00f'><b>".$word."</b></font>";
}
return str_replace($words, $highlighted, $searchtext);
}
当我搜索包含 2 个或多个用空格分隔的字符串的文本并且其中任何一个包含来自我突出显示的数组的任何 HTML 代码时,就会出现问题。
例如,searchtext="I have max system performance" AND searchstrings="max f"
在第一次迭代中,foreach 会将每个 max 替换为 <font color='#00f'><b>max</b></font>
在第二次迭代中,它将每个 f 替换为 <font color='#00f'><b>f</b></font>
第二次迭代也将替换在第一次替换中插入的 html 标签!
所以它也会替换字符串 <font color='#00f'>
中的 f?
有什么建议吗? 谢谢 米多拉格
尝试以下方法
foreach ( $words as $word ){
if(strlen ($word)>2)
{
$highlighted[] = "<font color='#00f'><b>".$word."</b></font>";
}
}
也许这是适合您的解决方案?
function highlightWords($searchtext, $searchstrings){
$searchstrings = preg_replace('/\s+/', ' ', trim($searchstrings));
$words = explode(' ', $searchstrings);
$highlighted = array();
foreach ( $words as $word ){
$highlighted[] = '<span class="highlighted-word">'.$word.'</span>';
}
return str_replace($words, $highlighted, $searchtext);
}
echo highlightWords('I have max system performance', 'max f');
?>
您需要在您的主页上添加一点CSS:
<style>
.highlighted-word {
font-weight: bold;
}
</style>
输出: 我有 max 系统 performance
---
更新: 如果你想突出显示完整的单词,请看这个:
function highlightCompleteWords($searchtext, $searchstrings){
$searchstrings = preg_replace('/\s+/', ' ', trim($searchstrings));
$words = explode(' ', $searchstrings);
$highlighted = array();
foreach ( $words as $word ){
$searchtext = preg_replace("/\w*?".preg_quote($word)."\w*/i", "<span class='highlighted-word'>[=12=]</span>", $searchtext);
}
return $searchtext;
}
echo highlightCompleteWords('I have max system performance', 'max f');
输出:我有 max 系统 performance
我可能不完全理解你的问题,但我想你想突出显示搜索字符串中的每个匹配词。
你可能只是做这样的事情:
$returnString = $searchtext;
foreach ( $words as $word ){
$returnString = preg_replace('/\b'.$word.'\b/i', "<font color='#00f'><b>[=10=]</b></font>", $returnString);
}
return $returnString;
这将输出:"I have max system performance"
因为 "f" 无法匹配
编辑 - 如果您还想匹配单词的一部分。
有点难看,但我相信这会为你分叉
$returnString = $searchtext;
foreach ( $words as $word ){
if(strlen($word)>2){
$returnString = preg_replace('/'.$word.'/i', "§§§[=11=]###", $returnString);
}
}
$returnString = preg_replace("/\§§§/","<font color='#00f'><b>", $returnString);
$returnString = preg_replace("/\###/","</b></font>", $returnString);
return $returnString;
<?php
$searchtext = "I have max system performance";
$searchstrings = "max f";
$searchstrings = preg_replace('/\s+/', ' ', trim($searchstrings));
$words = explode(' ', $searchstrings);
$highlighted = array();
foreach ( $words as $word ){
$highlighted[] = "<font color='#00f'><b>".$word."</b></font>";
}
echo strtr($searchtext, array_combine($words, $highlighted));
?>