PHP asXML() 函数
定义和用法
asXML() 函数以字符串的形式从 SimpleXMLElement 对象返回 XML 文档。
若失败,则返回 false。
语法
class SimpleXMLElement
{
string asXML(file)
}
参数 | 描述 |
---|---|
file | 可选。如果规定了此参数,则该函数会把 XML 写入一个文件,而不是返回它。 |
例子
XML 文件:
<?xml version="1.0" encoding="ISO-8859-1"?>
<note>
<to>George</to>
<from>John</from>
<heading>Reminder</heading>
<body>Don't forget the meeting!</body>
</note>
PHP 代码:
<?php
if (file_exists('test.xml'))
{
$xml = simplexml_load_file('test.xml');
}
echo $xml->asXML();
?>
输出:
George John Reminder Don't forget the meeting!
如果在浏览器窗口中选择“查看源文件”,会看到这些 HTML:
<note>
<to>George</to>
<from>John</from>
<heading>Reminder</heading>
<body>Don't forget the meeting!</body>
</note>