gpt4 book ai didi

php - 如何从
value
中获取值?

转载 作者:行者123 更新时间:2023-12-02 15:40:14 27 4
gpt4 key购买 nike

我需要从中获取值(value)

<div id = "result">Roll No 103 Pass</div> 

输出应该是:Roll No 103 Pass

我使用了这段代码:

$markup = file_get_contents('www.results.com');
$doc = new DomDocument();
@$file = $doc->loadHTML($markup);
$spans = $doc->getElementsByTagName('div');
foreach($spans AS $span)
{
$class = $span -> getElementsById('id');
if($class=="result") {
echo $span -> nodeValue;


}


}

但它只是返回空白屏幕

最佳答案

$doc = new DomDocument();
$doc->loadHTMLFile('http://www.results.com');
$thediv = $doc->getElementById('result');
echo $thediv->textContent;

关于php - 如何从<div>value</div>中获取值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8383396/

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