這篇文章主要介紹了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 重複執行同一個隊列任務的原因講解