目录

PHP asXML() 函数

❮ PHP SimpleXML 参考

示例

从 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+

❮ PHP SimpleXML 参考