使用 PHP 从类中提取 href?
这是否可能...
假设我有一些带有“click”类链接的文本:
<p>I am some text, i am some text, i am some text, i am some text
<a class="click" href="http://www.google.com">I am a link</a>
i am some text, i am some text, i am some text, i am some text</p>
使用 PHP,获取类名“click”的链接,然后获取 href 值?
Is this even possible...
Say I have some text with a link with a class of 'click':
<p>I am some text, i am some text, i am some text, i am some text
<a class="click" href="http://www.google.com">I am a link</a>
i am some text, i am some text, i am some text, i am some text</p>
Using PHP, get the link with class name, 'click', then get the href value?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有几种方法可以做到这一点,最快的是使用 XPath:
There are a few ways to do this, the quickest is to use XPath:
实际上你根本不需要让你的生活变得复杂:
You actually don't need to complicate your life at all: