文章詳情頁(yè)
PHP 文章內(nèi)容中的關(guān)鍵詞替換加鏈接
瀏覽:52日期: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.cgvv.com.cn/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. 測(cè)試模式 - XSL教程 - 52. python b站視頻下載的五種版本3. vue實(shí)現(xiàn)簡(jiǎn)易圖片左右旋轉(zhuǎn),上一張,下一張組件案例4. Python基于QQ郵箱實(shí)現(xiàn)SSL發(fā)送5. Python結(jié)合百度語(yǔ)音識(shí)別實(shí)現(xiàn)實(shí)時(shí)翻譯軟件的實(shí)現(xiàn)6. 解決Java中的java.io.IOException: Broken pipe問(wèn)題7. python如何寫(xiě)個(gè)俄羅斯方塊8. 《CSS3實(shí)戰(zhàn)》筆記--漸變?cè)O(shè)計(jì)(一)9. 教你JS更簡(jiǎn)單的獲取表單中數(shù)據(jù)(formdata)10. JAVA抽象類(lèi)及接口使用方法解析
排行榜
