从 SimpleXML 对象返回格式正确的 XML 字符串(XML 版本 1.0):
<?php
$note=<<<XML
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Do not forget me this weekend!</body>
</note>
XML;
$xml = new SimpleXMLElement($note);
echo $xml->asXML();
?>
运行示例 »
asXML() 函数从 SimpleXML 对象返回格式正确的 XML 字符串(XML 版本 1.0)。
SimpleXMLElement::asXML(
filename)
Parameter | Description |
---|---|
filename | Optional. If specified, the data is written to the file, instead of returning a string |
返回值: | 一个字符串(如果是则为 TRUE文件名参数已设置)成功。失败时为 FALSE |
---|---|
PHP 版本: | 5.0+ |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!