标签: php regex
可能重复: PHP URL to Link with Regex
如何将字符串中的某些网址转换为<a href="here url">here url</a>?
<a href="here url">here url</a>
我正在考虑preg_replace但是要使用什么正则表达式?
感谢名单!
答案 0 :(得分:0)
不建议将正则表达式与html代码一起使用,因为HTML是一种无上下文语言,并且最常建议将正则表达式与常规语言一起使用。 而是查看DOM库,作为查找和替换html标记属性的简单方法: http://php.net/manual/en/book.dom.php