PHP讀取並輸出XML檔案資料的簡單實現方法講解

來源:互聯網
上載者:User
這篇文章主要介紹了PHP讀取並輸出XML檔案資料的簡單實現方法,涉及php針對xml格式檔案資料的載入、遍曆、讀取、輸出等相關操作技巧,需要的朋友可以參考下

本文執行個體講述了PHP讀取並輸出XML檔案資料的簡單實現方法。分享給大家供大家參考,具體如下:

config.XML檔案:

<?xml version="1.0" encoding="UTF-8"?><node>  <student>    <name>張明</name>    <email>1234567890@qq.com</email>    <username>一樣菜</username>    <code>985931</code>  </student>  <student>    <name>王紅</name>    <email>2345678901@qq.com</email>    <username>冰封</username>    <code>5625362</code>  </student></node>

php檔案:

<?php  $file = 'config/config.xml';  $xml_array=simplexml_load_file($file); //將XML中的資料,讀取到數組對象中  foreach($xml_array as $tmp){    echo $tmp->name.": ".$tmp->email.", ".$tmp->username.", ".$tmp->code."<br>";  }?>

結果

張明: 1234567890@qq.com, 一樣菜, 985931王紅: 2345678901@qq.com, 冰封, 5625362

PS:這裡再為大家提供幾款關於xml操作的線上工具供大家參考使用:

線上XML/JSON互相轉換工具:
http://tools.jb51.net/code/xmljson

線上格式化XML/在線壓縮XML:
http://tools.jb51.net/code/xmlformat

XML在線壓縮/格式化工具:
http://tools.jb51.net/code/xml_format_compress

XML代碼線上格式化美化工具:
http://tools.jb51.net/code/xmlcodeformat

您可能感興趣的文章:

thinkphp5 載入靜態資源路徑與常量的方法講解

淺析PHP中的閉包和匿名函數解釋

源碼分析 Laravel 重複執行同一個隊列任務的原因講解

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.