当前位置:首页 > PHP教程 > php应用 > 列表

PHP XML数据解析代码,json,parser函数

发布:smiling 来源: PHP粉丝网  添加日期:2014-08-20 15:39:18 浏览: 评论:0 
  1. //xml string  
  2. $xml_string="<?xml version='1.0'?>  
  3. <users>  
  4. <user id='398'>  
  5. <name>Foo</name>  
  6. <email>foo@bar.com</name>  
  7. </user>  
  8. <user id='867'>  
  9. <name>Foobar</name>  
  10. <email>foobar@foo.com</name>  
  11. </user>  
  12. </users>"; 
  13.  
  14. //load the xml string using simplexml  
  15. $xml = simplexml_load_string($xml_string); 
  16.  
  17. //loop through the each node of user  
  18. foreach ($xml->user as $user)  
  19. {  
  20. //access attribute  
  21. echo $user['id'], ' ';  
  22. //subnodes are accessed by -> operator  
  23. echo $user->name, ' ';  
  24. echo $user->email, '<br />';  

json数据解析代码如下:

  1. $json_string='{"id":1,"name":"foo","email":"foo@foobar.com","interest":["wordpress","php"]} '
  2. $obj=json_decode($json_string); 
  3. echo $obj->name; //prints foo 
  4. echo $obj->interest[1]; //prints php 
  5.  
  6.  
  7. //xml string 
  8. $xml_string="<?xml version='1.0'?> 
  9. <users> 
  10. <user id='398'
  11. <name>Foo</name> 
  12. <email>foo@bar.com</name> 
  13. </user> 
  14. <user id='867'
  15. <name>Foobar</name> 
  16. <email>foobar@foo.com</name> 
  17. </user> 
  18. </users>"; 
  19.  
  20. //load the xml string using simplexml 
  21. $xml = simplexml_load_string($xml_string); 
  22.  
  23. //loop through the each node of user 
  24. foreach ($xml->user as $user
  25. {//开源代码phpfensi.com 
  26. //access attribute 
  27. echo $user['id'], ' '
  28. //subnodes are accessed by -> operator 
  29. echo $user->name, ' '
  30. echo $user->email, '<br />'

php还自带了一个PHP XML Parser

PHP XML Parser 简介

XML 函数允许我们解析 XML 文档,但无法对其进行验证,XML 是一种用于标准结构化文档交换的数据格式.

Tags: PHP XML数据解析 json函数

分享到: