gpt4 book ai didi

php - 文档格式

转载 作者:可可西里 更新时间:2023-11-01 00:28:03 26 4
gpt4 key购买 nike

我正在尝试阅读某个网页的正文以显示在单独的网页上,但我遇到了一些麻烦。现在,我使用以下代码

<?php
@$doc = new DOMDocument();
@$doc->loadHTMLFile('http://foo.com');
@$tags = $doc->getElementsByTagName('body');
foreach ($tags as $tag) {
$index_text .= $tag->nodeValue;
print nl2br($tag->nodeValue).'<br />';
}
?>

此代码有效,但它似乎删除了很多格式,这对我来说很重要,例如换行符。我该如何阻止这种情况发生

最佳答案

DOMDocument 的 formatOutput 属性将执行此操作。

$doc->formatOutput = true;

这将导致 DOM 输出更多地供人类使用,在您需要的地方使用换行符和缩进,即“ pretty-print ”。

此值的默认值为 false,因此您必须在需要时明确将其设置为 true

关于php - 文档格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1260286/

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