Home php教程 php手册 PHP操作XML做数据库的类

PHP操作XML做数据库的类

Jun 13, 2016 am 10:02 AM
example new php tab xml Do operate data database of kind read


* 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文件读入并返回字符串
Copy after login
Statement of this Website
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

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 Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

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

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

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

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

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

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

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

CakePHP Working with Database CakePHP Working with Database Sep 10, 2024 pm 05:25 PM

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

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

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

CakePHP Logging CakePHP Logging Sep 10, 2024 pm 05:26 PM

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

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

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

See all articles