本文實(shí)例講述了PHP讀取并輸出XML文件數(shù)據(jù)的簡單實(shí)現(xiàn)方法。分享給大家供大家參考,具體如下:
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中的數(shù)據(jù),讀取到數(shù)組對象中
foreach($xml_array as $tmp){
echo $tmp->name.": ".$tmp->email.", ".$tmp->username.", ".$tmp->code."br>";
}
?>
結(jié)果
張明: 1234567890@qq.com, 一樣菜, 985931
王紅: 2345678901@qq.com, 冰封, 5625362
PS:這里再為大家提供幾款關(guān)于xml操作的在線工具供大家參考使用:
在線XML/JSON互相轉(zhuǎn)換工具:
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
更多關(guān)于PHP相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《PHP針對XML文件操作技巧總結(jié)》、《PHP數(shù)組(Array)操作技巧大全》、《php字符串(string)用法總結(jié)》、《PHP錯誤與異常處理方法總結(jié)》、《PHP基本語法入門教程》、《php面向?qū)ο蟪绦蛟O(shè)計(jì)入門教程》、《php+mysql數(shù)據(jù)庫操作入門教程》及《php常見數(shù)據(jù)庫操作技巧匯總》
希望本文所述對大家PHP程序設(shè)計(jì)有所幫助。
您可能感興趣的文章:- php獲取excel文件數(shù)據(jù)
- PHP遞歸遍歷指定目錄的文件并統(tǒng)計(jì)文件數(shù)量的方法
- PHP獲取文件夾內(nèi)文件數(shù)的方法
- PHP實(shí)現(xiàn)格式化文件數(shù)據(jù)大小顯示的方法
- 統(tǒng)計(jì)PHP目錄中的文件數(shù)方法