gpt4 book ai didi

php - 如何使用 PHP Dom 提取 innerHTML

转载 作者:搜寻专家 更新时间:2023-10-31 21:15:32 25 4
gpt4 key购买 nike

<分区>

我目前正在使用 nodeValue 为我提供 HTML 输出,但它正在剥离 HTML 代码并只为我提供纯文本。有谁知道我如何修改我的代码以通过使用它的 ID 为我提供元素的内部 HTML?

function getContent($url, $id){

// This first section gets the HTML stuff using a URL
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_BINARYTRANSFER, true);
$html = curl_exec($ch);
curl_close($ch);

// This second section analyses the HTML and outputs it
$newDom = new domDocument;
$newDom->loadHTML($html);
$newDom->preserveWhiteSpace = false;
$newDom->validateOnParse = true;

$sections = $newDom->getElementById($id)->nodeValue;
echo $sections;


}

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