成人在线亚洲_国产日韩视频一区二区三区_久久久国产精品_99国内精品久久久久久久

您的位置:首頁(yè)技術(shù)文章
文章詳情頁(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)文章: