xml_fetch_array(); * * echo "
"; * * print_r($data); *"/>

xml_fetch_array(); * * echo "
"; * * print_r($data); *">






















HomeBackend DevelopmentPHP Tutorialxinputemulator PHP class for manipulating XML as a database

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 "

"; <br>* <br>* print_r($data); <br>* <br>class xml <br>{ <br>var $dbase; //Database, XML file to be read <br>var $dbname; / /Database name, top-level element, consistent with database file name<br>var $dbtable; //Data table, node to be obtained<br>var $parser; //Parser<br>var $vals; //Attributes<br>var $index; // Index <br>var $dbtable_array; //Node array <br>var $array; //Array of subordinate nodes <br>var $result; //Returned results <br>var $querys; <br>function xml($dbase,$dbtable) <br>{ <br>$ this->dbase=$dbase; <br>$this->dbname=substr($dbase,strrpos($dbase,"/")+1,-4); <br>$this->dbtable=$dbtable; <br> $data=$this->ReadXml($this->dbase); <br>if(!$data){ <br>die("Cannot read $this->dbname.xml"); <br>} <br>$this- > ;parser,$data ,$this->vals,$this->index); <br>xml_parser_free($this->parser); <br>//Traverse the index and filter out the node name of the node to be valued: $dbtable <br>foreach ($this ->index as $key=>$val) { <br>if ($key == $this->dbtable) { <br>//Get the node array<br>$this->dbtable_array = $val; <br>} else { <br>continue; <br>} <br>} <br>for ($i=0; $i dbtable_array); $i+=2) { <br>$offset = $this->dbtable_array[$i] + 1; <br>$len = $this->dbtable_array[$i + 1] - $offset; <br>//array_slice() returns a sequence in the array specified by the offset and length parameters.<br>//Get the lower-level array of the node<br>$value=array_slice($this->vals,$offset,$len); <br>//Get the valid array and merge it into the result array<br>$this->array[]=$ this->parseEFF($value); <br>} <br>return true; <br>} <br>//Read the XML file and return the string <br>function ReadXml($file) <br>{ <br>return file_get_contents($file); <br>} <br> //Get an effective array <br>function parseEFF($effective) { <br>for ($i=0; $i $effect[$effective[$i]["tag"] ] = $effective[$i]["value"]; <br>} <br>return $effect; <br>} <br>//xml_query (method, condition, logical operator and or or for multiple conditions, array inserted or updated) <br>function xml_query($method,$condition,$if='and',$array=array()) <br>{ <br>if(($method=='select')||($method=='count')){ <br> return $this->xml_select($method,$condition,$if); <br>} elseif($method=='insert') { <br>return $this->xml_insert($condition,$if,$array); <br>} elseif($method=='update') { <br>return $this->xml_update($condition,$if,$array); <br>} <br>} <br>//Get xml array<br>function xml_fetch_array($condition,$ if) <br>{ <br>//$this->querys++; <br>$row = $this->array; //Initialize the data array <br>if($condition) { <br>//Whether there is a condition, if so, generate a matching Conditional array<br>//Generate conditional array, conditional format field, operator, match <br>$c//Conditional array<br>$cs=count($condition)/3; //Conditional number<br>for($i=0;$i&lt ;$cs;$i++){ <br>$conditions[]=array("field"=>$condition[$i*3],"operator"=>$condition[$i*3+1],"match "=>$condition[$i*3+2]); <br>} <br>//echo count($row); <br>for($r=0;$r<count> for($c=0;$c//$i++; <br>$c //Current condition<br>$field=$condition['field']; //Field<br>$operator=$ condition["operator"]; //Operator <br>$match=$condition['match']; //Match <br>if(($operator=='=')&&($row[$r][$field] ==$match)){ <br>$true++;//If the conditions are met, the number of matches is increased by 1 <br>} elseif(($operator=='!=')&&($row[$r][$field]!=$ match)){ <br>$true++;//If the conditions are met, the number of matches is increased by 1 <br>} elseif(($operator=='$true++;//If the conditions are met, the number of matches is increased by 1 <br>} elseif(($operator=='$true++;//If the conditions are met, add 1 to the matching number <br>} elseif(($operator=='>')&&($row[$r][$field]>$match)){ <br>$true++ ;//If the conditions are met, add 1 to the matching number <br>} elseif(($operator=='>')&&($row[$r][$field]>=$match)){ <br>$true++;/ /If the condition is met, add 1 to the matching number <br>} <br>} <br>//Get the value according to the condition <br>if($if=='and'){ <br>//If the multiple conditions are and, when the matching number is equal to the condition number, generate Array <br>if($true==$cs){ <br>$result[]=$row[$r]; <br>} <br>} else { <br>//If multiple conditions are or, when there is a matching record, generate an array <br>if ($true!=0){ <br>$result[]=$row[$r]; <br>} <br>} <br>//echo $true; <br>//echo "<pre class="brush:php;toolbar:false">"; <br>//print_r($true ; ; <br>//print_r($this->result); <br>return $result; <br>} <br>//Filtering or statistics <br>function xml_select($method,$condition,$if) <br>{ <br>$result=$this-&gt ;xml_fetch_array($condition,$if); <br>if($method=='select'){ <br>return $result; <br>} else { <br>return count($result); <br>} <br>} <br>//Insert data <br>function xml_insert($condition,$if,$array) <br>{ <br>$data=$this->xml_fetch_array($condition,$if);//Total data array <br>$data[]=$array; //After insertion Total data array <br>$this->array=$data; //Update the total array <br>$this->WriteXml($data); <br>} <br>//Get the updated XML and rewrite <br>function xml_update($condition,$ if,$array) <br>{ <br>$datas=$this->array; //Total data array<br>$subtract=$this->xml_fetch_array($condition,$if);//Array to be updated<br>// echo "<pre class="brush:php;toolbar:false">"; <br>//print_r($data); <br>//print_r($datas); <br>//echo "Each record has ".count($datas[0])." values <br>"; <br>for($i=0;$i<count>$data=$datas[$i]; <br>//echo "No. 1 in the original record." $i."item<br>"; <br>foreach($data as $k=>$v){ <br>//echo "-The ".$k." value of ".$i." item is" .$v."<br>"; <br>//echo "--The value of the array ".$k." to be found is ".$subtract[0][$k]."<br>"; <br> if($v==$subtract[0][$k]){ <br>$is++; <br>} <br>} <br>if($is==count($data)){ <br>//echo "----With the first ".$i." matches<br>"; <br>$datas[$i]=$array; <br>//array_splice($datas,$i,$i+1); <br>} <br>//echo "original The ".$i." item in the record matches ".$is." to be found<br>"; <br>//echo "The ".$i." item in the original record ends<br>$is=0; <br>} <br>//array_splice($datas,2,2+1,$array); <br>//echo "<pre class="brush:php;toolbar:false">"; <br>//print_r($datas); <br> $this->array=$datas; <br>$this->WriteXml($datas); <br>}<br>//Write XML file (write all) <br>function WriteXml($array) <br>{ <br>if(!is_writeable($this->dbase)){ <br>die("Unable to write".$this-> dbname.".xml"); <br>} <br>$xml.="<?xml version="1.0" encoding="utf-8"?>rn"; <br>$xml.="rn"; <br>for($i=0;$i<count>$xml.="dbtable>rn"; <br>foreach($array [$i] as $k=>$s){ <br>$xml.="$s$k>rn"; <br>} <br>$xml.="$this-&gt ;dbtable>rn"; <br>} <br>$xml.="$this->dbname>"; <br>$fp=@fopen($this->dbase,"w"); <br>flock($fp , LOCK_EX); <br>rewind($fp); <br>fputs($fp,$xml); <br>fclose($fp); <br>} <br>//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) <br>function WriteLine($array) <br>{ <br>if(!is_writeable($this->dbase)){ <br>die("Cannot write".$this-&gt ;dbname.".xml"); <br>} <br>$fp=@fopen($this->dbase,"w"); <br>rewind($fp); <br>flock($fp, LOCK_EX); <br>fputs($ fp,"<?xml version="1.0" encoding="utf-8"?>rn"); <br>fputs($fp,"dbname>rn"); <br>for($ i=0;$i<count>fputs($fp,"dbtable>rn"); <br>$xml.=" dbtable>rn"; <br>foreach($array[$i] as $k=>$s){ <br>fputs($fp,"$s$k>rn"); <br>} <br> fputs($fp,"$this->dbtable>rn"); <br>} <br>fputs($fp,"$this->dbname>"); <br>fclose($fp); <br> } <br>} <br>?> <br><br>Usage: Insert a record <br><p><span><u>Copy code </u></span> The code is as follows: </p>
<p><br>require_once('xml.class.php'); <br>$xml = new xml("exemple .xml","item"); <br>$newarray = array( <br>"title"=>"XML title", <br>"text"=>"PHP’s XML class test! " <br>); <br>$insert=$xml->xml_query('insert','','',$newarray);//The second and third variable positions are conditions, leaving them blank means inserting <br></p> at the end <br>Modify record<br><p><span><u>Copy code</u></span> The code is as follows:</p>
<p><br>require_once('xml.class.php'); <br>$xml = new xml("exemple.xml","item"); <br>$array = array( <br>"title"=>"XML title", <br>"text"=>"PHP's XML class test!" <br>); <br>$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) <br></p>
<br>Delete record<br><p><span><u>Copy code</u></span> The code is as follows:</p>
<p><br>require_once('xml.class.php'); <br>$xml = new xml("exemple.xml","item"); <br>$ array = array(); <br>$insert=$xml->xml_query('update','title,=,What will the world be like in 20 years?','and',$array);//Leave the array empty<br> </p>
<br>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.
                
                
                <p>
                    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. </p>
                <p>
                    </p></count></count>
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.cn
Related Article
Working with Flash Session Data in LaravelWorking with Flash Session Data in LaravelMar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

cURL in PHP: How to Use the PHP cURL Extension in REST APIscURL in PHP: How to Use the PHP cURL Extension in REST APIsMar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Simplified HTTP Response Mocking in Laravel TestsSimplified HTTP Response Mocking in Laravel TestsMar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

Discover File Downloads in Laravel with Storage::downloadDiscover File Downloads in Laravel with Storage::downloadMar 06, 2025 am 02:22 AM

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:

12 Best PHP Chat Scripts on CodeCanyon12 Best PHP Chat Scripts on CodeCanyonMar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Explain the concept of late static binding in PHP.Explain the concept of late static binding in PHP.Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP Logging: Best Practices for PHP Log AnalysisPHP Logging: Best Practices for PHP Log AnalysisMar 10, 2025 pm 02:32 PM

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

How to Register and Use Laravel Service ProvidersHow to Register and Use Laravel Service ProvidersMar 07, 2025 am 01:18 AM

Laravel's service container and service providers are fundamental to its architecture. This article explores service containers, details service provider creation, registration, and demonstrates practical usage with examples. We'll begin with an ove

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use