php domdocument:当我创建一个xml时,我怎样才能正确识别每个元素?

时间:2010-07-07 13:06:01

标签: php xml domdocument

当我使用php的DomDocument创建XML时,它会正确地创建xml但所有元素 在一行中,xml文件本身不太可读。

我在谷歌搜索并发现DomDocument中的属性formatOutput应该解决问题,我使用php 5.3,我在DomDocument中没有这个。

任何想法?

1 个答案:

答案 0 :(得分:5)

喜欢这个..

$doc = new DOMDocument('1.0');
$doc->formatOutput = true;

我看到你说你正在使用5.3并且这不起作用但Docs中的任何内容都暗示这已被弃用