本文實(shí)例講述了PHP實(shí)現(xiàn)對(duì)xml進(jìn)行簡(jiǎn)單的增刪改查(CRUD)操作。分享給大家供大家參考,具體如下:
假如有下面xml文件:
<?xml version="1.0" encoding="UTF-8"?> <setting> <preferTime>55.8</preferTime> <playerValue>56</playerValue> <reduceValue>40</reduceValue> <reduceTime>339</reduceTime> </setting>
如何使用php對(duì)它進(jìn)行CRUD?其實(shí)像這種簡(jiǎn)單的xml文件使用SimpleXMl
再好不過(guò)了。你可以像這樣來(lái)操作它:
<?php //獲取數(shù)據(jù) get the config data if(isset($_GET["type"])){ if($_GET["type"]=="get"){ $xml=simplexml_load_file("../config.xml"); $config=array("preferTime"=>$xml->preferTime."", "playerValue"=>$xml->playerValue."", "reduceValue"=>$xml->reduceValue."", "reduceTime"=>$xml->reduceTime.""); echo json_encode($config); } //更新數(shù)據(jù) update the config data if($_GET["type"]=="update"){ $xml=simplexml_load_file("../config.xml"); $xml->preferTime=$_GET["data"]["preferTime"]; $xml->playerValue=$_GET["data"]["playerValue"]; $xml->reduceValue=$_GET["data"]["reduceValue"]; $xml->reduceTime=$_GET["data"]["reduceTime"]; $xml->asXML("../config.xml"); echo json_encode("save success!"); } }
更多詳情可參考PHP官方usage examples 和 API description .
PS:這里再為大家提供幾款關(guān)于xml操作的在線(xiàn)工具供大家參考使用:
在線(xiàn)XML/JSON互相轉(zhuǎn)換工具:
http://tools.jb51.net/code/xmljson
在線(xiàn)格式化XML/在線(xiàn)壓縮XML:
http://tools.jb51.net/code/xmlformat
XML在線(xiàn)壓縮/格式化工具:
http://tools.jb51.net/code/xml_format_compress
XML代碼在線(xiàn)格式化美化工具:
http://tools.jb51.net/code/xmlcodeformat
更多關(guān)于PHP相關(guān)內(nèi)容感興趣的讀者可查看本站專(zhuān)題:《PHP針對(duì)XML文件操作技巧總結(jié)》、《PHP數(shù)組(Array)操作技巧大全》、《php字符串(string)用法總結(jié)》、《PHP錯(cuò)誤與異常處理方法總結(jié)》、《PHP基本語(yǔ)法入門(mén)教程》、《php面向?qū)ο蟪绦蛟O(shè)計(jì)入門(mén)教程》、《php+mysql數(shù)據(jù)庫(kù)操作入門(mén)教程》及《php常見(jiàn)數(shù)據(jù)庫(kù)操作技巧匯總》
希望本文所述對(duì)大家PHP程序設(shè)計(jì)有所幫助。