程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> PHP操作XML作為數據庫的類

PHP操作XML作為數據庫的類

編輯:關於PHP編程

xml.class.php文件代碼
復制代碼 代碼如下:
<?php
* example 讀取數據:
*
* $xml = new xml("dbase.xml",'table');
*
* $data=$xml->xml_fetch_array();
*
* echo "<pre >";
*
* print_r($data);
*
class xml
{
var $dbase; //數據庫,要讀取的XML文件
var $dbname; //數據庫名稱,頂層元素,與數據庫文件名稱一致
var $dbtable; //數據表,要取得的節點
var $parser; //剖析器
var $vals; //屬性
var $index; //索引
var $dbtable_array;//節點數組
var $array; //下級節點的數組
var $result; //返回的結果
var $querys;
function xml($dbase,$dbtable)
{
$this->dbase=$dbase;
$this->dbname=substr($dbase,strrpos($dbase,"/")+1,-4);
$this->dbtable=$dbtable;
$data=$this->ReadXml($this->dbase);
if(!$data){
die("無法讀取 $this->dbname.xml");
}
$this->parser = xml_parser_create();
xml_parser_set_option($this->parser,XML_OPTION_CASE_FOLDING,0);
xml_parser_set_option($this->parser,XML_OPTION_SKIP_WHITE,1);
xml_parse_into_struct($this->parser,$data,$this->vals,$this->index);
xml_parser_free($this->parser);
//遍歷索引,篩選出要取值的節點 節點名:$dbtable
foreach ($this->index as $key=>$val) {
if ($key == $this->dbtable) {
//取得節點數組
$this->dbtable_array = $val;
} else {
continue;
}
}
for ($i=0; $i < count($this->dbtable_array); $i+=2) {
$offset = $this->dbtable_array[$i] + 1;
$len = $this->dbtable_array[$i + 1] - $offset;
//array_slice() 返回根據 offset 和 length 參數所指定的 array 數組中的一段序列。
//所取節點下級數組
$value=array_slice($this->vals,$offset,$len);
//取得有效數組,合並為結果數組
$this->array[]=$this->parseEFF($value);
}
return true;
}
//將XML文件讀入並返回字符串
function ReadXml($file)
{
return file_get_contents($file);
}
//取得有效數組
function parseEFF($effective) {
for ($i=0; $i < count($effective); $i++){
$effect[$effective[$i]["tag"]] = $effective[$i]["value"];
}
return $effect;
}
//xml_query(方法,條件,多條件時邏輯運算符and or or,插入或更新的數組)
function xml_query($method,$condition,$if='and',$array=array())
{
if(($method=='select')||($method=='count')){
return $this->xml_select($method,$condition,$if);
} elseif($method=='insert') {
return $this->xml_insert($condition,$if,$array);
} elseif($method=='update') {
return $this->xml_update($condition,$if,$array);
}
}
//取得xml數組
function xml_fetch_array($condition,$if)
{
//$this->querys++;
$row = $this->array; //初始化數據數組
if($condition) {
//是否有條件,如有條件則生成符合條件的數組
//生成條件數組,條件格式 field,operator,match
$condition=explode(",",$condition);//條件數組
$cs=count($condition)/3; //條件數
for($i=0;$i<$cs;$i++){
$conditions[]=array("field"=>$condition[$i*3],"operator"=>$condition[$i*3+1],"match"=>$condition[$i*3+2]);
}
//echo count($row);
for($r=0;$r<count($row);$r++){
for($c=0;$c<$cs;$c++){
//$i++;
$condition=$conditions[$c]; //當前條件
$field=$condition['field']; //字段
$operator=$condition["operator"];//運算符
$match=$condition['match']; //匹配
if(($operator=='=')&&($row[$r][$field]==$match)){
$true++;//若條件符合,符合數加1
} elseif(($operator=='!=')&&($row[$r][$field]!=$match)){
$true++;//若條件符合,符合數加1
} elseif(($operator=='<')&&($row[$r][$field]<$match)){
$true++;//若條件符合,符合數加1
} elseif(($operator=='<=')&&($row[$r][$field]<=$match)){
$true++;//若條件符合,符合數加1
} elseif(($operator=='>')&&($row[$r][$field]>$match)){
$true++;//若條件符合,符合數加1
} elseif(($operator=='>')&&($row[$r][$field]>=$match)){
$true++;//若條件符合,符合數加1
}
}
//根據條件取值
if($if=='and'){
//如果多條件為and,當符合數等於條件數時,生成數組
if($true==$cs){
$result[]=$row[$r];
}
} else {
//如果多條件為or,當有符合紀錄時,生成數組
if($true!=0){
$result[]=$row[$r];
}
}
//echo $true;
//echo "<pre >";
//print_r($true);
$true=0;//符合條件數歸零,進入下一輪循環
}
} else {
$result=$this->array;
}
//echo "<pre >";
//print_r($this->result);
return $result;
}
//篩選或統計
function xml_select($method,$condition,$if)
{
$result=$this->xml_fetch_array($condition,$if);
if($method=='select'){
return $result;
} else {
return count($result);
}
}
//插入數據
function xml_insert($condition,$if,$array)
{
$data=$this->xml_fetch_array($condition,$if);//總數據數組
$data[]=$array; //插入後的總數據數組
$this->array=$data; //更新總數組
$this->WriteXml($data);
}
//得到更新的XML並改寫
function xml_update($condition,$if,$array)
{
$datas=$this->array; //總數據數組
$subtract=$this->xml_fetch_array($condition,$if);//要更新的數組
//echo "<pre >";
//print_r($data);
//print_r($datas);
//echo "每條記錄中有".count($datas[0])."個值<br>";
for($i=0;$i<count($datas);$i++){
$data=$datas[$i];
//echo "原始記錄中的第".$i."條<br>";
foreach($data as $k=>$v){
//echo "-第".$i."條的".$k."值為".$v."<br>";
//echo "--要查找的數組".$k."值為".$subtract[0][$k]."<br>";
if($v==$subtract[0][$k]){
$is++;
}
}
if($is==count($data)){
//echo "----與第".$i."條符合<br>";
$datas[$i]=$array;
//array_splice($datas,$i,$i+1);
}
//echo "原始記錄中的第".$i."條與要查找的有".$is."匹配<br>";
//echo "原始記錄中的第".$i."條結束<br>";
$is=0;
}
//array_splice($datas,2,2+1,$array);
//echo "<pre >";
//print_r($datas);
$this->array=$datas;
$this->WriteXml($datas);
}
//寫入XML文件(全部寫入)
function WriteXml($array)
{
if(!is_writeable($this->dbase)){
die("無法寫入".$this->dbname.".xml");
}
$xml.="<?xml version="1.0" encoding="utf-8"?>rn";
$xml.="<$this->dbname>rn";
for($i=0;$i<count($array);$i++){
$xml.="<$this->dbtable>rn";
foreach($array[$i] as $k=>$s){
$xml.="<$k>$s</$k>rn";
}
$xml.="</$this->dbtable>rn";
}
$xml.="</$this->dbname>";
$fp=@fopen($this->dbase,"w");
flock($fp, LOCK_EX);
rewind($fp);
fputs($fp,$xml);
fclose($fp);
}
//逐行寫入xml(我試著寫入10000行,感覺沒一次寫入快,所以沒用這種寫入方式)
function WriteLine($array)
{
if(!is_writeable($this->dbase)){
die("無法寫入".$this->dbname.".xml");
}
$fp=@fopen($this->dbase,"w");
rewind($fp);
flock($fp, LOCK_EX);
fputs($fp,"<?xml version="1.0" encoding="utf-8"?>rn");
fputs($fp,"<$this->dbname>rn");
for($i=0;$i<count($array);$i++){
fputs($fp,"<$this->dbtable>rn");
$xml.="<$this->dbtable>rn";
foreach($array[$i] as $k=>$s){
fputs($fp,"<$k>$s</$k>rn");
}
fputs($fp,"</$this->dbtable>rn");
}
fputs($fp,"</$this->dbname>");
fclose($fp);
}
}
?>

使用方法: 插入一條記錄
復制代碼 代碼如下:
require_once('xml.class.php');
$xml = new xml("exemple.xml","item");
$newarray = array(
"title"=>"XML標題",
"text"=>"PHP的XML類測試!"
);
$insert=$xml->xml_query('insert','','',$newarray);//第二及第三個變量位置是條件,留空表示在最後插入

修改記錄
復制代碼 代碼如下:
require_once('xml.class.php');
$xml = new xml("exemple.xml","item");
$array = array(
"title"=>"XML標題",
"text"=>"PHP的XML類測試!"
);
$insert=$xml->xml_query('update','title,=,20年後世界將會怎樣?','and',$array);//title標簽等於xxx的用$array替換(可以建唯一屬性的標簽,比如id,這樣就可以修改某一條記錄)

刪除記錄
復制代碼 代碼如下:
require_once('xml.class.php');
$xml = new xml("exemple.xml","item");
$array = array();
$insert=$xml->xml_query('update','title,=,20年後世界將會怎樣?','and',$array);//數組留空

備注   刪除時其實是把值變空,我們可以修改一下xml_update(),在生成xml文件之前先判斷$array的值,如果值為空就不寫入到最終的數組中就是刪除的效果了。  寫入xml文件時速度粉快(我測試過30000條記錄的情況),插入時只插入一條記錄,修改速度也相當的快,挺適合中型網站生成XML時使用,所以推薦一下。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved