php xml 入門學習資料

來源:互聯網
上載者:User

起因:
  今天做項目時遇到一個問題:需要動態更新首頁上的圖片,以示本站不是做完了就算了,是有人一直在維護。好了,需求有了,如何??!
  我的想法如下:
  圖片存放位置:放在一個檔案夾中;圖片的類型:不能固定了,只要是圖片就可以上傳顯示;圖片名字:按原始名字有點不正規,應該重新命名一下。
  顯示的位置:這就需要對圖片指定相應的id,這個id是固定的,要與圖片一一對應。於是就有一個記錄一一對應的關係檔案,可以選擇csv檔案,選擇資料庫記錄,最後決定選擇xml,這個東西在學校一直沒學懂,我一直迴避使用這東西,怕麻煩。今天算是挑戰一下,花了一下午時間,終於有所收穫。
學習步驟:
  明確目標: 1、理解xml的結構;2、如何動態建立xml檔案;3、如何讀取和修改xml檔案
  一、 xml的結構是樹形結構:
這個好理解。簡單寫一個: 複製代碼 代碼如下:<pictures>
<picture>
<id>1</id>
<name>pic 1</name>
</picture>
<picture>
<id>2</id>
<name>pic 2</name>
</picture>
<picture>
<id>3</id>
<name>pic 3</name>
</picture>
</pictures>

二、我使用的php建立:
    1. 定義一個DOM對象: $dom = new DomDocument('1.0');
    2. 添加子項目:$dom->appendChild($dom->createElement("pictures"))
     記憶體中的原型是:<pictures></pictures>
     繼續往裡邊加子項目:*->appendChild($dom->createElement("picture"));
     繼續加: **->appendChild($dom->createElement("id"));
     不加子項目了,加節點: ***->appendChild($dom->createNode("1"))
     上面的*代表上上一行的代碼;這樣一來就可以寫成一行:
       $dom->appendChild($dom->createElement("pictures"))->appendChild($dom->createElement("picture"))
       ->appendChild($dom->createElement("id"))->appendChild($dom->createNode("1"));
     現在記憶體中應該是這樣的:<pictures><picture><id>1</id></picture></pictures>
     顯然裡要求還遠,很容易看懵的。
      因此一般這麼寫: $pictures = $dom->appendChild($dom->createElement("pictures"));
               $picture = $pictures->appendChild($dom->createElement("picture"));
               $id = $picture->appendChild($dom->createElement("id"));
                $id->appendChild($dom->createNode("1"));
      下面還可以接著建立name節點:
               $name = $picture->appendChild($dom->createElement("name"));
                   $name->appendChild($dom->createNode("pic 1"));
      接下來還要接著建立picture節點:
              $picture = $pictures->appendChild($dom->createElement("picture"));
      其實這些麻煩的事可以寫個for迴圈來實現。
      產生xml檔案:
              $dom->formatOutput = true;//設定格式化輸出
              $dom->save("erhsh.xml");//儲存xml檔案
  三、讀取xml檔案。
      1、還是定義一個DOM對象;$dom->new DomDocument();
      2、載入xml檔案:$dom->load("erhsh.xml");
      3、按照節點的名字取得節點集合:$dom->getElementByTagName("pictures");
      這種方法有點麻煩,參考檔案:
http://www.jb51.net/article/25853.htm

    不過有一種我喜歡的方法:simplexml_load_file("erhsh.xml");
     此方法可以把xml檔案的內容轉換成對象的形式,使用"->"結和"[]"很容易去的xml的內容;
    但是在開發中還是遇到了一點問題:
    當執行:print_r($xml->pictures);時輸出的是一個 SimpleXMLElement 對象,([picture] => array([0]=>array(...)[1]=>array(...)));
    再執行:print_r($xml->pictures->picture);輸出的是n個分開的對象。
    執行:print_r($xml->pictures->picture[0]->id);輸出的還是一個對象。這就很不理解,應該是一個字串。 最後網上說是“迭代對象”,
    應該使用echo輸出,print_r(), var_dump()輸出不準確。參考地址:http://www.jb51.net/article/25852.htm
    當然也可以修改xml的值通過這個方法。
寫的很爛,僅供本人備忘。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.