文章詳情頁(yè)
PHP 文章內(nèi)容中的關(guān)鍵詞替換加鏈接
瀏覽:65日期:2022-09-12 18:02:11
/** *對(duì)內(nèi)容中的關(guān)鍵詞添加鏈接 *只處理第一次出現(xiàn)的關(guān)鍵詞,對(duì)已有鏈接的關(guān)鍵不會(huì)再加鏈接,支持中英文 *$content:string 原字符串 *$keyword:string 關(guān)鍵詞 *$link:string,鏈接 */ public static function yang_keyword_link($content,$keyword,$link){ //排除圖片中的關(guān)鍵詞 $content = preg_replace( ’|(<img[^>]*?)(’.$keyword.’)([^>]*?>)|U’, ’$1%&&&&&%$3’, $content); $regEx = ’/(?!((<.*?)|(<a.*?)))(’.$keyword.’)(?!(([^<>]*?)>)|([^>]*?</a>))/si’; $url=’<a href='http://www.piao2010.com/bcjs/’.$link.’' target='_blank' class='content_guanjianci'>’.$keyword.’</a>’; $content = preg_replace($regEx,$url,$content,1); //還原圖片中的關(guān)鍵詞 $content=str_replace(’%&&&&&%’,$keyword,$content); return $content; }
標(biāo)簽:
PHP
相關(guān)文章:
1. python使用ctypes庫(kù)調(diào)用DLL動(dòng)態(tài)鏈接庫(kù)2. Python 如何將integer轉(zhuǎn)化為羅馬數(shù)(3999以內(nèi))3. css進(jìn)階學(xué)習(xí) 選擇符4. 詳解Python模塊化編程與裝飾器5. html小技巧之td,div標(biāo)簽里內(nèi)容不換行6. Python下使用Trackbar實(shí)現(xiàn)繪圖板7. python web框架的總結(jié)8. 以PHP代碼為實(shí)例詳解RabbitMQ消息隊(duì)列中間件的6種模式9. 使用Python解析Chrome瀏覽器書(shū)簽的示例10. Python性能測(cè)試工具Locust安裝及使用
排行榜
