Home  >  Article  >  php教程  >  PHP关联链接常用代码

PHP关联链接常用代码

WBOY
WBOYOriginal
2016-06-13 11:57:06844browse

方法一:手动编辑添加
方法二:使用程序在输出内容时实现,又不影响后台内容的编辑。

下面是PHP自动给文章内容添加关联链接方法和示例:

Keylinks函数方法:
参数一:要处理的内容
参数二:替换次数
返回结果:处理后的内容

复制代码 代码如下:


header("Content-Type:text/html;charset=utf-8"); //设置编码
$linkdatas=array(
array('前端开发', 'http://http://www.jb51.net'),
array('前端设计', 'http://www.jb51.net'),
array('Web前端', 'http://www.jb51.net'),
array('前端博客', 'http://www.jb51.net'),
);
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;
}

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn