当前位置 : 主页 > 网络编程 > PHP >

PHP asXML()函数讲解

来源:互联网 收集:自由互联 发布时间:2021-05-20
PHP asXML()函数 实例 格式化 XML(版本 1.0)中的 SimpleXML 对象的数据: php $note=XMLnote toTove/to fromJani/from headingReminder/heading bodyDon't forget me this weekend!/body /note XML;$xml=new SimpleXMLElement($note); e

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_ );

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对易盾网络的支持。如果你想了解更多相关内容请查看下面相关链接

网友评论