gpt4 book ai didi

php - 使用PHP从带有类的url中提取href?

转载 作者:行者123 更新时间:2023-12-02 07:12:32 25 4
gpt4 key购买 nike

这甚至可能吗...

假设我有一些带有“点击”类链接的文本:

<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,获取带有类名的链接,“单击”,然后获取href 值?

最佳答案

有几种方法可以做到这一点,最快的是使用 XPath:

$dom = new DOMDocument;
$dom->loadHTML($html);
$xpath = new DOMXPath($dom);

$nodeList = $xpath->query('//a[@class="click"]');
foreach ($nodeList as $node) {
$href = $node->getAttribute('href');
$text = $node->textContent;
}

关于php - 使用PHP从带有类的url中提取href?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4445661/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com