当前位置:首页 > PHP教程 > php函数 > 列表

php中simplexml_load_file函数用法实例

发布:smiling 来源: PHP粉丝网  添加日期:2021-04-25 14:28:49 浏览: 评论:0 

这篇文章主要介绍了php中simplexml_load_file函数用法,以实例形式详细的讲述了simplexml_load_file函数读取XML文件的具体方法,非常具有实用价值,需要的朋友可以参考下。

本文实例讲述了php中simplexml_load_file函数用法。分享给大家供大家参考。具体用法分析如下:

在php中simplexml_load_file() 函数把 XML 文档载入对象中之后我们就可以利用由此函数返回的对象进行相关的操作了,下面我们看几个测试实例.

例子,XML文件代码如下:

  1. <?xml version="1.0" encoding="ISO-8859-1"?>  
  2. <note> 
  3. <to>George</to> 
  4. <from>John</from> 
  5. <heading>Reminder</heading> 
  6. <body>Don't forget the meeting!</body> 
  7. </note> 

PHP 代码如下:

  1. <?php  
  2. if (file_exists('test.xml'))  
  3. {  
  4.   $xml = simplexml_load_file('test.xml');  
  5.   var_dump($xml);  
  6. }  
  7. else  
  8. {  
  9.   exit('Error.');  
  10. }  
  11. ?> 

运行输出结果如下: 

  1. object(SimpleXMLElement)#1 (4) { 
  2.   ["to"]=> 
  3.   string(6) "George" 
  4.   ["from"]=> 
  5.   string(4) "John" 
  6.   ["heading"]=> 
  7.   string(8) "Reminder" 
  8.   ["body"]=> 
  9.   string(25) "Don't forget the meeting!" 

假如有一个“iciba.xml”文件,其内容如下:

  1. <?xml version="1.0" encoding="UTF-8"?>  
  2. <dict num="219" id="219" name="219">  
  3.  <key>天空</key>  
  4.  <pos></pos>  
  5.  <acceptation>Array;Array;</acceptation>  
  6.  <sent>  
  7.   <orig>The church tower stood against the sky like a finger pointing towards heaven.</orig>  
  8.   <trans>教堂的尖塔在天空的映衬下宛如指向天空的手指。</trans>  
  9.  </sent>  
  10.  <sent>  
  11.   <orig>A balloon floated across the sky.</orig>  
  12.   <trans>气球飘过天空。</trans>  
  13.  </sent>  
  14.  <sent>  
  15.   <orig>A bolt of lightning lit up the sky.</orig>  
  16.   <trans>(一道)闪电照亮了天空。</trans>  
  17.  </sent>  
  18.  <sent>  
  19.   <orig>A bright moving object appeared in the sky at sunset.</orig>  
  20.   <trans>日落西山时,天空出现了一个移动的发亮物体。</trans>  
  21.  </sent>  
  22.  <sent>  
  23.   <orig>A bright rainbow arched above.</orig>  
  24.   <trans>一弯明亮的彩虹悬挂在天空。</trans>  
  25.  </sent>  
  26. </dict> 

在PHP语言中我们可以用以下方法取得我们想要的值: 

  1. <?php  
  2. $xmldata = simplexml_load_file("iciba.xml");  
  3.  
  4. header("Content-Type: text/html; charset=UTF-8");  
  5. print_r($xmldata); //第一部分  
  6.  
  7. $listcount = count($xmldata->sent);  
  8.  
  9. for($i=0;$i<$listcount;$i++){ //第二部分  
  10.  $dictlist = $xmldata->sent[$i];  
  11.  echo "<br />例句:".$dictlist->orig;  
  12.  echo "<br />翻译:".$dictlist->trans;  
  13. }  
  14. ?> 

“第一部分”将输出: 

  1. SimpleXMLElement Object 
  2.     [@attributes] => Array 
  3.         ( 
  4.             [num] => 219 
  5.             [id] => 219 
  6.             [name] => 219 
  7.         ) 
  8.     [key] => 天空 
  9.     [pos] => SimpleXMLElement Object 
  10.         ( 
  11.         ) 
  12.  
  13.     [acceptation] => Array;Array; 
  14.     [sent] => Array 
  15.         ( 
  16.             [0] => SimpleXMLElement Object 
  17.                 ( 
  18.                     [orig] => The church tower stood against the sky like a finger pointing towards heaven. 
  19.                     [trans] => 教堂的尖塔在天空的映衬下宛如指向天空的手指。 
  20.                 ) 
  21.  
  22.             [1] => SimpleXMLElement Object 
  23.                 ( 
  24.                     [orig] => A balloon floated across the sky. 
  25.                     [trans] => 气球飘过天空。 
  26.                 ) 
  27.  
  28.             [2] => SimpleXMLElement Object 
  29.                 ( 
  30.                     [orig] => A bolt of lightning lit up the sky. 
  31.                     [trans] => (一道)闪电照亮了天空。 
  32.                 ) 
  33.  
  34.             [3] => SimpleXMLElement Object 
  35.                 ( 
  36.                     [orig] => A bright moving object appeared in the sky at sunset. 
  37.                     [trans] => 日落西山时,天空出现了一个移动的发亮物体。 
  38.                 ) 
  39.  
  40.             [4] => SimpleXMLElement Object 
  41.                 ( 
  42.                     [orig] => A bright rainbow arched above. 
  43.                     [trans] => 一弯明亮的彩虹悬挂在天空。 
  44.                 ) 
  45.  
  46.         ) 
  47.  

“第二部分”将输出:

例句:The church tower stood against the sky like a finger pointing towards heaven.

翻译:教堂的尖塔在天空的映衬下宛如指向天空的手指。

例句:A balloon floated across the sky.

翻译:气球飘过天空。

例句:A bolt of lightning lit up the sky.

翻译:(一道)闪电照亮了天空。

例句:A bright moving object appeared in the sky at sunset.

翻译:日落西山时,天空出现了一个移动的发亮物体。

例句:A bright rainbow arched above.

翻译:一弯明亮的彩虹悬挂在天空。

例子,更深入的一个遍历输出生成表格,代码如下:

  1. eader("content-type:text/html; charset=utf-8"); //设置编码  
  2. $xml = simplexml_load_file('a.xml'); //载入xml文件 $lists和xml文件的根节点是一样的  
  3. echo $xml->company."<br>";  
  4. echo $xml->town."<br>id:";  
  5. echo $xml->town['id']."<br>parent:";  
  6. echo $xml->town['parent']."<br>";  
  7.  
  8. echo "<br>循环读取:<br>";  
  9. foreach($xml->user as $users){ //有多个user,取得的是数组,循环输出  
  10.     echo "-------------------<br>";  
  11.     echo "姓名:".$users->name."<br>";  
  12.     echo "编号:".$users->age."<br>";  
  13.     echo "性别:".$users->age['sex']."<br>";  
  14.     echo "序号:".$users->height."<br>";  
  15. //www.phpfensi.com 
  16.  
  17. echo "<br>循环读取:<br>";  
  18. foreach($xml->town as $towns){ //有多个user,取得的是数组,循环输出  
  19.     echo "-------------------<br>";  
  20.     echo "id:".$towns['id']."<br>";  
  21.     echo "归属:".$towns['parent']."<br>";  
  22.     echo "地区:".$towns."<br>";  

希望本文所述对大家的PHP程序设计有所帮助。

Tags: simplexml_load_file

分享到: