PHP操作XML做数据库的类
* example 读取数据:
*
* $xml = new xml("dbase.xml",'table');
*
* $data=$xml->xml_fetch_array();
*
* echo "
";<br> *<br> * print_r($data);<br> *<br> <br> class xml<br> {<br> var $dbase; //数据库,要读取的XML文件<br> var $dbname; //数据库名称,顶层元素,与数据库文件名称一致<br> var $dbtable; //数据表,要取得的节点<br> var $parser; //剖析器<br> var $vals; //属性<br> var $index; //索引<br> var $dbtable_array;//节点数组<br> var $array; //下级节点的数组<br> var $result; //返回的结果<br> var $querys;<br> <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("无法读取 $this->dbname.xml");<br> }<br> $this->parser = xml_parser_create();<br> xml_parser_set_option($this->parser,XML_OPTION_CASE_FOLDING,0);<br> xml_parser_set_option($this->parser,XML_OPTION_SKIP_WHITE,1);<br> xml_parse_into_struct($this->parser,$data,$this->vals,$this->index);<br> xml_parser_free($this->parser);<br> //遍历索引,筛选出要取值的节点 节点名:$dbtable<br> foreach ($this->index as $key=>$val) {<br> if ($key == $this->dbtable) {<br> //取得节点数组<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() 返回根据 offset 和 length 参数所指定的 array 数组中的一段序列。<br> //所取节点下级数组<br> $value=array_slice($this->vals,$offset,$len);<br> //取得有效数组,合并为结果数组<br> $this->array[]=$this->parseEFF($value);<br> }<br> return true;<br> }<br> //将XML文件读入并返回字符串

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.

Validator can be created by adding the following two lines in the controller.

Logging in CakePHP is a very easy task. You just have to use one function. You can log errors, exceptions, user activities, action taken by users, for any background process like cronjob. Logging data in CakePHP is easy. The log() function is provide

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c
