php中simplexml_load_file函数用法实例

这篇文章主要介绍了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!"
  10. }

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

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <dict num="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. header("Content-Type: text/html; charset=UTF-8");
  4. print_r($xmldata); //第一部分
  5. $listcount = count($xmldata->sent);
  6. for($i=0;$i<$listcount;$i++){ //第二部分
  7. $dictlist = $xmldata->sent[$i];
  8. echo "<br />例句:".$dictlist->orig;
  9. echo "<br />翻译:".$dictlist->trans;
  10. }
  11. ?>

“第一部分”将输出:

  1. SimpleXMLElement Object
  2. (
  3. [@attributes] => Array
  4. (
  5. [num] => 219
  6. [id] => 219
  7. [name] => 219
  8. )
  9. [key] => 天空
  10. [pos] => SimpleXMLElement Object
  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. [1] => SimpleXMLElement Object
  22. (
  23. [orig] => A balloon floated across the sky.
  24. [trans] => 气球飘过天空。
  25. )
  26. [2] => SimpleXMLElement Object
  27. (
  28. [orig] => A bolt of lightning lit up the sky.
  29. [trans] => (一道)闪电照亮了天空。
  30. )
  31. [3] => SimpleXMLElement Object
  32. (
  33. [orig] => A bright moving object appeared in the sky at sunset.
  34. [trans] => 日落西山时,天空出现了一个移动的发亮物体。
  35. )
  36. [4] => SimpleXMLElement Object
  37. (
  38. [orig] => A bright rainbow arched above.
  39. [trans] => 一弯明亮的彩虹悬挂在天空。
  40. )
  41. )
  42. )

“第二部分”将输出:

例句: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. echo "<br>循环读取:<br>";
  8. foreach($xml->user as $users){ //有多个user,取得的是数组,循环输出
  9. echo "-------------------<br>";
  10. echo "姓名:".$users->name."<br>";
  11. echo "编号:".$users->age."<br>";
  12. echo "性别:".$users->age['sex']."<br>";
  13. echo "序号:".$users->height."<br>";
  14. } //www.phpfensi.com
  15. echo "<br>循环读取:<br>";
  16. foreach($xml->town as $towns){ //有多个user,取得的是数组,循环输出
  17. echo "-------------------<br>";
  18. echo "id:".$towns['id']."<br>";
  19. echo "归属:".$towns['parent']."<br>";
  20. echo "地区:".$towns."<br>";
  21. }

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