gpt4 book ai didi

PHP 使用 DOMDocument 从 URL 中检索内部 HTML 作为字符串

转载 作者:太空宇宙 更新时间:2023-11-04 14:21:19 25 4
gpt4 key购买 nike

<分区>

我一直在挑选一些零碎的代码,你可以大致看到我正在尝试做什么,显然这是行不通的,而且是完全错误的:

<?php

$dom= new DOMDocument();
$dom->loadHTMLFile('http://example.com/');
$data = $dom->getElementById("profile_section_container");
$html = $data->saveHTML();
echo $html;

?>

使用 CURL 调用,我能够检索文档 URL 源:

function curl_get_file_contents($URL)
{
$c = curl_init();
curl_setopt($c, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($c, CURLOPT_URL, $URL);
$contents = curl_exec($c);
curl_close($c);

if ($contents) return $contents;
else return FALSE;
}

$f = curl_get_file_contents('http://example.com/');
echo $f;

那么我现在如何使用它在 PHP 中实例化 DOMDocument 对象并使用 getElementById 提取节点

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