PHP加粗搜索结果中关键字
程序员文章站
2022-05-27 11:02:07
...
function highlighter_text($text, $words){
$split_words = explode( " " , $words );
foreach($split_words as $word) {
$color = "#4285F4";
$text = preg_replace("|($word)|Ui" , "$1" , $text );
}
return $text;
}
$string = "I like chocolates and I like apples";$words = "apple";
echo highlighter_text($string ,$words);
推荐阅读
-
PHP记录搜索引擎来路关键字
-
php5中this关键字用法讲解
-
php实现屏蔽掉黑帽SEO的搜索关键字_PHP
-
php中关键字interface和implements详解
-
android实现搜索功能并将搜索结果保存到SQLite中(实例代码)
-
PHP 在数组中搜索给定的简单实例 array_search 函数,数组array_search
-
Yii中CGridView关联表搜索排序方法实例详解,yiicgridview_PHP教程
-
使用php的curl依据关键词爬取百度搜索结果页
-
PHP 在数组中搜索给定的简单实例 array_search 函数
-
php 遍历目录,生成目录下每个文件的md5值并写入到结果文件中