当我使用 php 的 DomDocument 创建 XML 时,它会正确创建 xml,但所有元素都在一行中,xml 文件本身不那么可读。
我在 google 中搜索,发现 DomDocument 中的属性 formatOutput 应该可以解决问题,我使用 php 5.3,但在 DomDocument 中没有正确设置。
有任何想法吗?
当我使用 php 的 DomDocument 创建 XML 时,它会正确创建 xml,但所有元素都在一行中,xml 文件本身不那么可读。
我在 google 中搜索,发现 DomDocument 中的属性 formatOutput 应该可以解决问题,我使用 php 5.3,但在 DomDocument 中没有正确设置。
有任何想法吗?
像这样..
$doc = new DOMDocument('1.0');
$doc->formatOutput = true;
我看到您说您使用的是 5.3,但这不起作用,但文档中没有任何内容暗示这已被弃用