DOMNode 无法转换为字符串

发布于 2024-12-18 02:20:36 字数 448 浏览 0 评论 0原文

<?php
// try this html listing example for all nodes / includes a few getElementsByTagName options:

$file = $DOCUMENT_ROOT. "http://website.com";
$doc = new DOMDocument();
@$doc->loadHTMLFile($file);

// example 1:
$elements = $doc->getElementsByTagName('tr');

$album = $elements->item(1);

echo $album;

我如何才能将其转换为可以输出到屏幕的数据?它说我无法转换成字符串。我读到,DOMnode 的功能不像数组,但它创建了 DOMNodeList

<?php
// try this html listing example for all nodes / includes a few getElementsByTagName options:

$file = $DOCUMENT_ROOT. "http://website.com";
$doc = new DOMDocument();
@$doc->loadHTMLFile($file);

// example 1:
$elements = $doc->getElementsByTagName('tr');

$album = $elements->item(1);

echo $album;

How am I able to convert this into data that I can output to the screen? It says I cannot convert into a string. I have read that the DOMnode doesn't function like an array, but it makes a DOMNodeList.

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

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

发布评论

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

评论(1

回忆凄美了谁 2024-12-25 02:20:36

查看此页面中的示例

http://www.php.net/manual/ en/domnodelist.item.php

使用

$album->nodeValue

Check out the examples from this page

http://www.php.net/manual/en/domnodelist.item.php

Use

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