PHP對關鍵字進行高亮顯示

2021-07-30 10:31:04 字數 855 閱讀 2374

一 **

"">

xmlns

="">

php$str

="在中國古典四大名著中,絕大多數兒童最喜歡的就是西遊記。"

;//定義原始字串

$keyword

="西遊記"

;//指定要替換的關鍵字

echo str_replace

($keyword

,"$keyword"

,$str

);//加粗加顏色

?>

二 執行效果

三 執行說明

本例用到了str_replace函式,該函式的用法如下:

mixed str_replace ( mixed $search , mixed $replace , mixed $subject [, int &$count ] )

該函式返回乙個字串或者陣列。該字串或陣列是將subject中全部的search都被replace替換之後的結果。

大小: 26.2 kb

如何高亮顯示關鍵字

以前寫全文檢索程式的時候寫的.原創 by 飛鳥 dev club.com email flybird dev club.com ie5.5 指令碼引擎 required dim patern dim found dim str dim result patern a b str a dog fall...

SecureCRT 關鍵字高亮顯示

grep命令紅色高亮關鍵字 1.左邊側欄 session manage 右鍵sessions properties current color scheme 點選edit 3 點選bold 並將foreground 設為紅色 點選ok 4 重啟securecrt,grep命令需要加 color 引數...

WPF搜尋關鍵字高亮顯示

目標 在wpf中,對lucene.net進行全文檢索後的結果中包含的關鍵字進行高亮顯示。檢索結果中的關鍵字高亮顯示,在網頁中顯示是很簡單的,lucene中加標籤樣式就可以了,可是在wpf中就不行了。我在wpf中用gridcontrol顯示搜尋結果列表,gridcontrol的模板裡用textbloc...