DOMElement 类的对象无法转换为字符串

Posted

技术标签:

【中文标题】DOMElement 类的对象无法转换为字符串【英文标题】:Object of class DOMElement could not be converted to string 【发布时间】:2011-11-30 16:55:56 【问题描述】:

我尝试解析 XML RSS 通量。实际上,抛出了一个错误:

Catchable fatal error: Object of class DOMElement could not be converted to string in ...

我想获取标签“link”的值“test”

这是我的代码:

//check if url contents xml
            $content = file_get_contents($flux);

            $xml = new DOMDocument;
            $xml->loadXML($content);

            //get the link
            $link = $xml->getElementsByTagName('link')->item(0);

            echo $link;

这是通量:

<?xml version="1.0" encoding="ISO-8859-15" ?>
<rss version="2.0">
    <channel>
        <title>test</title>
        <link>http://test.fr</link>
    </channel>
</rss>

谁能帮帮我?

【问题讨论】:

可能的帮助:***.com/questions/548744/php-xpath-question 【参考方案1】:

$link 是一个无法转换为字符串的对象(some objects can)。

要查看它是哪个对象,请使用var_dump($link);。我假设它是DOMElementDocs,请参阅它必须提供的所有属性和方法的链接,例如

echo $link->tagName;

echo $link->textContent;

【讨论】:

tagName 返回“链接”而不是“测试”。还是谢谢你

以上是关于DOMElement 类的对象无法转换为字符串的主要内容,如果未能解决你的问题,请参考以下文章

DateTime 类的对象无法转换为字符串

DateInterval 类的 php 对象无法转换为字符串

可捕获致命错误的 FindAll() 结果:DateTime 类的对象无法转换为字符串

可捕获的致命错误:WP_Error 类的对象无法转换为字符串

mysqli_stmt 类的对象在执行时无法转换为字符串

可捕获的致命错误:WP_Error 类的对象无法转换为字符串