Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 PHP5 创建 XML 文件。我有这样的代码:
$doc = new DOMDocument(); ... $xml_content = $doc->saveXML();
问题是创建的 XML 代码以这样的根节点开始:
<?xml version="1.0"?>
但我希望它是这样的:
<?xml version="1.0" standalone="yes" ?>
我想我需要在 $doc 上调用一些函数,但我不知道是哪一个?
你想设置
$doc->xmlStandalone = true;
它不是类的函数,它是一个属性,因此在文档中很难找到。你可以在这里阅读。