php添加关联链接的代码
时间:2021-07-01 10:21:17
帮助过:3人阅读
- /**
- * php关联链接
- */
- header("Content-Type:text/html;charset=utf-8"); //设置编码
- $linkdatas=array(
- array('前端开发', 'http://http://bbs.it-home.org'),
- array('前端设计', 'http://bbs.it-home.org'),
- array('web前端', 'http://bbs.it-home.org'),
- array('前端博客', 'http://bbs.it-home.org'),
- );
- echo "替换前
"; - echo $str='Web前端开发 - 专注于网站前端设计与Web用户体验。前端开发,专注Web前端开发,关注Web用户体验,关注国内外最新最好的前端设计资源和前端开发技术的专业前端博客';
- echo "
替换后 "; - 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[] = '/(?!()/s';
- $word2[] = $v[0];
- $replacement[] = '' . $v[0] . '';
- }
- if ($replacenum != '') {
- $txt = preg_replace($word1, $replacement, $txt, $replacenum);
- } else {
- $txt = str_replace($word2, $replacement, $txt);
- }
- }
- return $txt;
- }
- ?>
|