解析方括号占位符并获取特定属性的值
像这样的一些链接:
[links url='http://www.google.com.hk' title='Google' image='']google[/links]
[links url='http://hk.yahoo.com' title='yahoo' image='']yahoo[/links]
如何使用 PHP 正则表达式获取 url
属性?
http://www.google.com.hk
http://hk.yahoo.com
Some links like these:
[links url='http://www.google.com.hk' title='Google' image='']google[/links]
[links url='http://hk.yahoo.com' title='yahoo' image='']yahoo[/links]
How to use PHP Regular expression get the url
attributes?
http://www.google.com.hk
http://hk.yahoo.com
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这应该可以帮助您开始:
正则表达式的解释:
This should get you started:
Explanation of the regex:
使用此正则表达式:
/\[links\s+(?:[^\]]*\s+)*url=\'([^\']*)\'[^\]]*?\]/
Use this regex:
/\[links\s+(?:[^\]]*\s+)*url=\'([^\']*)\'[^\]]*?\]/