php xml 增删改查,PHP实现对xml进行简单的增删改查(CRUD)操作示例
本文實(shí)例講述了PHP實(shí)現(xiàn)對(duì)xml進(jìn)行簡(jiǎn)單的增刪改查(CRUD)操作。分享給大家供大家參考,具體如下:
假如有下面xml文件:
55.8
56
40
339
如何使用php對(duì)它進(jìn)行CRUD?其實(shí)像這種簡(jiǎn)單的xml文件使用SimpleXMl再好不過了。你可以像這樣來(lái)操作它:
//獲取數(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操作的在線工具供大家參考使用:
在線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針對(duì)XML文件操作技巧總結(jié)》、《PHP數(shù)組(Array)操作技巧大全》、《php字符串(string)用法總結(jié)》、《PHP錯(cuò)誤與異常處理方法總結(jié)》、《PHP基本語(yǔ)法入門教程》、《php面向?qū)ο蟪绦蛟O(shè)計(jì)入門教程》、《php+mysql數(shù)據(jù)庫(kù)操作入門教程》及《php常見數(shù)據(jù)庫(kù)操作技巧匯總》
希望本文所述對(duì)大家PHP程序設(shè)計(jì)有所幫助。
總結(jié)
以上是生活随笔為你收集整理的php xml 增删改查,PHP实现对xml进行简单的增删改查(CRUD)操作示例的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 用php写shell,php与shell
- 下一篇: php源代码压缩,PHP_PHP 源代码