最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

探討如何使用SimpleXML函數(shù)來(lái)加載和解析XML文檔

 更新時(shí)間:2013年06月07日 12:05:22   作者:  
本篇文章是對(duì)使用SimpleXML函數(shù)來(lái)加載和解析XML文檔進(jìn)行了詳細(xì)的分析介紹,需要的朋友參考下
大量SmipleXML函數(shù)可用來(lái)加載和解析大量XML文檔。
--------------------------------------------------------------------------------
1.simpleXML_load_file()函數(shù)來(lái)加載指定的XML文件到對(duì)象。如果加載文件時(shí)遇到問(wèn)題,則返回FLASE。例:
book.xml文件:
復(fù)制代碼 代碼如下:

<?xml version="1.0" standalone="yes"?>
<library>
 <book>
  <title>Pride and Prejudice</title>
  <author gender="female">Jane Austen</author>
  <description>Jane Austen's most popular work.</description>
 </book>
 <book>
  <title>The Conformist</title>
  <author gender="male">Alberto Moravia</author>
  <description>Alberto Moravia's classic psyhcological novel.</description>
 </book>
 <book>
  <title>The Sun Also Rises</title>
  <author gender="male">Ernest Hemingway</author>
  <description>The masterpiece that launched Hemingway's career.</description>
 </book>
</library>

php文件:
復(fù)制代碼 代碼如下:

<?php
$xml=simplexml_load_file("book.xml");echo "<pre>";
var_dump($xml);
?>

輸出結(jié)果:
復(fù)制代碼 代碼如下:

object(SimpleXMLElement)#1 (1) {
  ["book"]=>
  array(3) {
    [0]=>
    object(SimpleXMLElement)#2 (3) {
      ["title"]=>
      string(19) "Pride and Prejudice"
      ["author"]=>
      string(11) "Jane Austen"
      ["description"]=>
      string(32) "Jane Austen's most popular work."
    }
    [1]=>
    object(SimpleXMLElement)#3 (3) {
      ["title"]=>
      string(14) "The Conformist"
      ["author"]=>
      string(15) "Alberto Moravia"
      ["description"]=>
      string(46) "Alberto Moravia's classic psyhcological novel."
    }
    [2]=>
    object(SimpleXMLElement)#4 (3) {
      ["title"]=>
      string(18) "The Sun Also Rises"
      ["author"]=>
      string(16) "Ernest Hemingway"
      ["description"]=>
      string(49) "The masterpiece that launched Hemingway's career."
    }
  }
}

相關(guān)文章

最新評(píng)論

闽清县| 新营市| 乌拉特前旗| 万源市| 桂东县| 页游| 郸城县| 牟定县| 金溪县| 宜川县| 湘西| 东乡| 格尔木市| 任丘市| 崇阳县| 平定县| 鹤山市| 南宫市| 宁津县| 揭阳市| 衡山县| 萨迦县| 金门县| 育儿| 修武县| 天台县| 涞水县| 文登市| 岳阳市| 张家界市| 木兰县| 临泉县| 嘉兴市| 巴林右旗| 海伦市| 西乌珠穆沁旗| 沅江市| 四平市| 兴业县| 韩城市| 墨脱县|