gpt4 book ai didi

php - 如何显示 DOMElement?

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:57:15 28 4
gpt4 key购买 nike

我正在使用 readability从网页中提取 HTML 的代码。如何在页面上显示它?

$content = grabArticle($webpage);
echo $content;

ERROR => Object of class DOMElement could not be converted to string...

最佳答案

Marc B 的回答让我走上了正确的道路,但我也有类似的需求,这就是我找到的代码:

$newdoc = new DOMDocument;
$node = $newdoc->importNode($node, true);
$newdoc->appendChild($node);
$html = $newdoc->saveHTML();

关于php - 如何显示 DOMElement?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2818759/

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