作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个这样的数组:
$keywords = array( 'php', 'html', 'css' );
我有一个数据库查询返回一个段落,其中包含数组中前面提到的关键字。
我有一个这样的链接模板:
$linktpl = '<a href="%s" title="%s">%s</a>';
我想要一个简单的函数来快速扫描该段落,每当它找到关键字时,它就会使用上面的链接模板将其转换为链接。
如果可能的话,我希望它考虑单数和复数(比如 framework 和 frameworks)
SEO 进行自动关键字链接是否安全?
有什么想法吗?
最佳答案
$string = 'this is the php test subject.';
// associate keywords with their urls
$urls = array(
'php' => 'http://www.php.net',
// and etc...
);
// this callback will take the matches from preg and generate the
// html link making use of the $urls dictionary
$linker = function($matches) use($urls) {
$urlKey = strtolower($matches[1]);
return sprintf(
'<a href="%s" title="%s">%s</a>',
$urls[$urlKey], $matches[1], $matches[1]
);
};
// do the magic
$regex = '/\b(' . preg_quote(implode('|', $keywords), '/') . ')\b/i';
preg_replace_callback($regex, $linker, $string);
使用正则表达式的优势在于我们可以利用 \b
修饰符来确保我们捕捉到诸如 (php)
、PHP.
或 phpp
并妥善处理它们。
关于php - 扫描字符串并用链接替换标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5889873/
我是一名优秀的程序员,十分优秀!