当前位置:主页 > 软件编程 > PHP代码 >

PHP asXML()函数讲解

时间:2021-09-03 09:19:08 | 栏目:PHP代码 | 点击:

PHP asXML()函数

实例

格式化 XML(版本 1.0)中的 SimpleXML 对象的数据:

<?php 
$note=<<<XML
<note> 
<to>Tove</to> 
<from>Jani</from> 
<heading>Reminder</heading> 
<body>Don't forget me this weekend!</body> 
</note> 
XML;
$xml=new SimpleXMLElement($note); 
echo $xml->asXML(); 
?>

定义和用法

asXML()函数格式化 XML(版本 1.0)中的 SimpleXML 对象的数据。

语法

asXML( _filename_ );

总结

您可能感兴趣的文章:

相关文章