首页 > 作文

PHP simplexml

更新时间:2023-04-06 15:50:23 阅读: 评论:0

php simplexml_load_string() 函数

实例

转换形式良好的 xml 字符串为 simplexmlelement 对象,然后输出对象的键和元素:

<?php $note=<<<xml<note> <to>tove</to> <from>jani</from> <heading>reminder</heading> <body>don't forget me this weekend!</body> </note> xml;$xml=simplexml_load_string($note); print_r($xml); ?>

定义和用法

simplexml_load_string()函数转换形式良好的 xml 字符串dtf为 simplexmlelement 对象。

语法

simplexml_load_string( _data,classname,options,ns,is_prefix_ );

实例 1

输出 xml 字符串中每个元素的数据:

<?php $note=<<莆田景区;<xml <note> <to>tove</to> <from>jani</from> <heading>reminder</heading> <body>自考本和专升本的区别don't forget me this weekend!</body> </note> xml;$xml=simplexml_load_string($note); echo $xml->to . "<br&感恩妈妈作文gt;"; echo $xml->from . "<br>"; echo $xml->heading . "<br>"; echo $xml->body; ?>

实例 2

输出 xml 字符串中每个子节点的元素名称和数据:

<?php $note=<<<xml <note> <to>tove</to> <from>jani</from> <heading>reminder</heading> <body>don't forget me this weekend!</body> </八字短句note> xml;$xml=simplexml_load_string($note); echo $xml->getname() . "<br>"; foreach($xml->children() as $child) { echo $child->getname() . ": " . $child . "<br>"; } ?>

总结

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

本文发布于:2023-04-06 15:50:21,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/zuowen/e352e991567322ae918733d20b22b737.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

本文word下载地址:PHP simplexml.doc

本文 PDF 下载地址:PHP simplexml.pdf

标签:字符串   实例   元素   对象
相关文章
留言与评论(共有 0 条评论)
   
验证码:
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图