PHP XML数据解析代码,json,parser函数
程序员文章站
2024-01-27 20:12:22
...
Foo foo@bar.com "; //load the xml string using simplexml $xml = simplexml_load_string($xml_string); //loop through the each node of user foreach ($xml->user as $user) { //access attribute echo $user['id'], ' '; //subnodes are accessed by -> operator echo $user->name, ' '; echo $user->email, ' Foobar foobar@foo.com
'; } json数据解析代码如下: $json_string='{"id":1,"name":"foo","email":"foo@foobar.com","interest":["wordpress","php"]} '; $obj=json_decode($json_string); echo $obj->name; //prints foo echo $obj->interest[1]; //prints php //xml string $xml_string="Foo foo@bar.com "; //load the xml string using simplexml $xml = simplexml_load_string($xml_string); //loop through the each node of user foreach ($xml->user as $user) { //access attribute echo $user['id'], ' '; //subnodes are accessed by -> operator echo $user->name, ' '; echo $user->email, ' Foobar foobar@foo.com
'; } ?>
php还自带了一个PHP XML Parser
PHP XML Parser 简介
XML 函数允许我们解析 XML 文档,但无法对其进行验证,XML 是一种用于标准结构化文档交换的数据格式.
上一篇: 请问一个关于php及html的有关问题
下一篇: 请教php中两个时间怎么相减
推荐阅读
-
php 备份数据库代码(生成word,excel,json,xml,sql)_php技巧
-
PHP XML数据解析代码,json,parser函数
-
php json_encode()函数返回json数据实例代码_PHP
-
请教PHP怎样将XML文件读入JSON格式数据,并,JS怎样将该格式的数据进行解析
-
PHP JSON 数据解析代码
-
php把读取xml文档并转换成json数据代码
-
php 备份数据库代码(生成word,excel,json,xml,sql)
-
php json_encode()函数返回json数据实例代码
-
PHP使用Http Post请求发送Json对象数据代码解析
-
php 备份数据库代码(生成word,excel,json,xml,sql)_PHP教程