PHP头条
热点:

PHP asXML()函数讲解,phpasxml函数讲解


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

总结

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

www.phpzy.comtrue/php/20713.htmlTechArticlePHP asXML()函数讲解,phpasxml函数讲解 PHP asXML()函数 实例 格式化 XML(版本 1.0)中的 SimpleXML 对象的数据: php $note=XMLnote toTove/to fromJani/from headingReminder/heading bodyDon't forget me this weekend!/bod...

相关文章

PHP之友评论

今天推荐