Posted in PHP onNovember 05, 2012
方法一:手动编辑添加
方法二:使用程序在输出内容时实现,又不影响后台内容的编辑。
下面是PHP自动给文章内容添加关联链接方法和示例:
Keylinks函数方法:
参数一:要处理的内容
参数二:替换次数
返回结果:处理后的内容
header("Content-Type:text/html;charset=utf-8"); //设置编码 $linkdatas=array( array('前端开发', 'http://https://3water.com'), array('前端设计', 'https://3water.com'), array('Web前端', 'https://3water.com'), array('前端博客', 'https://3water.com'), ); echo "替换前<br/>"; echo $str='Web前端开发 - 专注于网站前端设计与Web用户体验。前端开发,专注Web前端开发,关注Web用户体验,关注国内外最新最好的前端设计资源和前端开发技术的专业前端博客'; echo "<br/>替换后<br/>"; echo $str=keylinks($str,2); /** * 关联关键词替换 * @param txt $string 原字符串 * @param replacenum $int 替换次数 * @return string 返回字符串 */ function keylinks($txt, $replacenum = '') { global $linkdatas; if ($linkdatas) { $word = $replacement = array(); foreach ($linkdatas as $v) { $word1[] = '/(?!(<a.*?))' . preg_quote($v[0], '/') . '(?!.*<\/a>)/s'; $word2[] = $v[0]; $replacement[] = '<a href="' . $v[1] . '" target="_blank" class="keylink">' . $v[0] . '</a>'; } if ($replacenum != '') { $txt = preg_replace($word1, $replacement, $txt, $replacenum); } else { $txt = str_replace($word2, $replacement, $txt); } } return $txt; }
PHP关联链接常用代码
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@