无法加载和解析 DOM 对象

发布于 12-20 22:50 字数 382 浏览 0 评论 0原文

我正在尝试加载 dom 对象并解析它以查找特定链接
这是我的代码:

$content = file_get_contents("http://www.example.com/example.php");
$dom = new DOMDocument();
$dom->loadHTML($content);
$dom->preserveWhiteSpace = false; 
 var_dump($dom);

我得到的是:

对象(DOMDocument)#1 (0) { }

如果我回显 $content 我会得到所有 html。

我的代码有什么问题?

I am trying to load a dom object and to parse it for finding specific links
Here is my code:

$content = file_get_contents("http://www.example.com/example.php");
$dom = new DOMDocument();
$dom->loadHTML($content);
$dom->preserveWhiteSpace = false; 
 var_dump($dom);

What I get is:

object(DOMDocument)#1 (0) { }

If i echo the $content I get all the html.

What is wrong in my code?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

北城孤痞2024-12-27 22:50:30

这是手册中的示例: DOMDocument

<?php 
$content = file_get_contents("http://www.example.com/example.php");
$xml = new DOMDocument();
$xml->loadHTML($content);

// Empty array to hold all links to return
$links = array();

//Loop through each <a> tag in the dom and add it to the link array
foreach($xml->getElementsByTagName('a') as $link) {
    $links[] = array('url' => $link->getAttribute('href'), 'text' => $link->nodeValue);
}

print_r($links);
?>

This is an example from the manual: DOMDocument

<?php 
$content = file_get_contents("http://www.example.com/example.php");
$xml = new DOMDocument();
$xml->loadHTML($content);

// Empty array to hold all links to return
$links = array();

//Loop through each <a> tag in the dom and add it to the link array
foreach($xml->getElementsByTagName('a') as $link) {
    $links[] = array('url' => $link->getAttribute('href'), 'text' => $link->nodeValue);
}

print_r($links);
?>
蓝礼2024-12-27 22:50:30

而不是 var_dump($xml)
尝试:
echo $xml->saveHTML();

Instead of var_dump($xml)
try:
echo $xml->saveHTML();

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文