xml_fetch_array(); * * echo "
"; * * print_r($data); *"/> xml_fetch_array(); * * echo ""; * * print_r($data); *">Home > Article > Backend Development > xinputemulator PHP class for manipulating XML as a database
xinputemulator PHP class for manipulating XML as a database
- WBOYOriginal
- 2016-07-29 08:44:02834browse
xml.class.php file code
Copy the code The code is as follows:
* example to read data:
*
* $xml = new xml("dbase.xml",'table');
*
* $data=$xml->xml_fetch_array();
*
* echo "";
*
* print_r($data);
*
class xml
{
var $dbase; //Database, XML file to be read
var $dbname; / /Database name, top-level element, consistent with database file name
var $dbtable; //Data table, node to be obtained
var $parser; //Parser
var $vals; //Attributes
var $index; // Index
var $dbtable_array; //Node array
var $array; //Array of subordinate nodes
var $result; //Returned results
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("Cannot read $this->dbname.xml");
}
$this- > ;parser,$data ,$this->vals,$this->index);
xml_parser_free($this->parser);
//Traverse the index and filter out the node name of the node to be valued: $dbtable
foreach ($this ->index as $key=>$val) {
if ($key == $this->dbtable) {
//Get the node array
$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() returns a sequence in the array specified by the offset and length parameters.
//Get the lower-level array of the node
$value=array_slice($this->vals,$offset,$len);
//Get the valid array and merge it into the result array
$this->array[]=$ this->parseEFF($value);
}
return true;
}
//Read the XML file and return the string
function ReadXml($file)
{
return file_get_contents($file);
}
//Get an effective array
function parseEFF($effective) {
for ($i=0; $i < count($effective); $i++){
$effect[$effective[$i]["tag"] ] = $effective[$i]["value"];
}
return $effect;
}
//xml_query (method, condition, logical operator and or or for multiple conditions, array inserted or updated)
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);
}
}
//Get xml array
function xml_fetch_array($condition,$ if)
{
//$this->querys++;
$row = $this->array; //Initialize the data array
if($condition) {
//Whether there is a condition, if so, generate a matching Conditional array
//Generate conditional array, conditional format field, operator, match
$c//Conditional array
$cs=count($condition)/3; //Conditional number
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;$rfor($c=0;$c<$cs;$c++){
//$i++;
$c //Current condition
$field=$condition['field']; //Field
$operator=$ condition["operator"]; //Operator
$match=$condition['match']; //Match
if(($operator=='=')&&($row[$r][$field] ==$match)){
$true++;//If the conditions are met, the number of matches is increased by 1
} elseif(($operator=='!=')&&($row[$r][$field]!=$ match)){
$true++;//If the conditions are met, the number of matches is increased by 1
} elseif(($operator=='<')&&($row[$r][$field]<$match)) {
$true++;//If the conditions are met, the number of matches is increased by 1
} elseif(($operator=='<=')&&($row[$r][$field]<=$match)){
$true++;//If the conditions are met, add 1 to the matching number
} elseif(($operator=='>')&&($row[$r][$field]>$match)){
$true++ ;//If the conditions are met, add 1 to the matching number
} elseif(($operator=='>')&&($row[$r][$field]>=$match)){
$true++;/ /If the condition is met, add 1 to the matching number
}
}
//Get the value according to the condition
if($if=='and'){
//If the multiple conditions are and, when the matching number is equal to the condition number, generate Array
if($true==$cs){
$result[]=$row[$r];
}
} else {
//If multiple conditions are or, when there is a matching record, generate an array
if ($true!=0){
$result[]=$row[$r];
}
}
//echo $true;
//echo "";
//print_r($true ; ;
//print_r($this->result);
return $result;
}
//Filtering or statistics
function xml_select($method,$condition,$if)
{
$result=$this-> ;xml_fetch_array($condition,$if);
if($method=='select'){
return $result;
} else {
return count($result);
}
}
//Insert data
function xml_insert($condition,$if,$array)
{
$data=$this->xml_fetch_array($condition,$if);//Total data array
$data[]=$array; //After insertion Total data array
$this->array=$data; //Update the total array
$this->WriteXml($data);
}
//Get the updated XML and rewrite
function xml_update($condition,$ if,$array)
{
$datas=$this->array; //Total data array
$subtract=$this->xml_fetch_array($condition,$if);//Array to be updated
// echo "";
//print_r($data);
//print_r($datas);
//echo "Each record has ".count($datas[0])." values
";
for($i=0;$i$data=$datas[$i];
//echo "No. 1 in the original record." $i."item
";
foreach($data as $k=>$v){
//echo "-The ".$k." value of ".$i." item is" .$v."
";
//echo "--The value of the array ".$k." to be found is ".$subtract[0][$k]."
";
if($v==$subtract[0][$k]){
$is++;
}
}
if($is==count($data)){
//echo "----With the first ".$i." matches
";
$datas[$i]=$array;
//array_splice($datas,$i,$i+1);
}
//echo "original The ".$i." item in the record matches ".$is." to be found
";
//echo "The ".$i." item in the original record ends
$is=0;
}
//array_splice($datas,2,2+1,$array);
//echo "";
//print_r($datas);
$this->array=$datas;
$this->WriteXml($datas);
}
//Write XML file (write all)
function WriteXml($array)
{
if(!is_writeable($this->dbase)){
die("Unable to write".$this-> dbname.".xml");
}
$xml.="rn";
$xml.="<$this-> ;dbname>rn";
for($i=0;$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);
}
//Write xml line by line (I tried to write 10,000 lines, but it didn’t happen once Writing is fast, so there is no need to use this writing method)
function WriteLine($array)
{
if(!is_writeable($this->dbase)){
die("Cannot write".$this-> ;dbname.".xml");
}
$fp=@fopen($this->dbase,"w");
rewind($fp);
flock($fp, LOCK_EX);
fputs($ fp,"rn");
fputs($fp,"<$this->dbname>rn");
for($ i=0;$ifputs($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);
}
}
?>
Usage: Insert a recordCopy code The code is as follows:
at the end
require_once('xml.class.php');
$xml = new xml("exemple .xml","item");
$newarray = array(
"title"=>"XML title",
"text"=>"PHP’s XML class test! "
);
$insert=$xml->xml_query('insert','','',$newarray);//The second and third variable positions are conditions, leaving them blank means inserting
Modify recordCopy code The code is as follows:
require_once('xml.class.php');
$xml = new xml("exemple.xml","item");
$array = array(
"title"=>"XML title",
"text"=>"PHP's XML class test!"
);
$insert=$xml->xml_query('update','title, =, What will the world be like in 20 years? ','and',$array);//Replace the title tag equal to xxx with $array (you can create a unique attribute tag, such as id, so that a certain record can be modified)
Delete recordCopy code The code is as follows:
require_once('xml.class.php');
$xml = new xml("exemple.xml","item");
$ array = array();
$insert=$xml->xml_query('update','title,=,What will the world be like in 20 years?','and',$array);//Leave the array empty
Remarks: When deleting, the value is actually made empty. We can modify xml_update() to determine the value of $array before generating the xml file. If the value is empty, it will not be written to the final array, which is the effect of deletion. . The speed of writing xml files is very fast (I have tested 30,000 records). When inserting, only one record is inserted, and the modification speed is also very fast. It is very suitable for medium-sized websites to use when generating XML, so I recommend it.The above introduces the xinputemulator PHP class that operates XML as a database, including the content of xinputemulator. I hope it will be helpful to friends who are interested in PHP tutorials.
Statement:The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cnPrevious article:PHP cookie operation implements code loginNext article:PHP cookie operation implements code loginRelated articles
See more