php minixml详解

2015-01-24信息快讯网

MiniXML来自 Sourceforge ,参见:http://sourceforge.net/projects/minixml/,也有自己的官方网站: http://minixml.psychogenic.com/index.html.

使用方法如下,可以看到miniXML的使用,与ActiveLink-PHP-XML-Package-0.4.0相比,更加符合使用习惯,也更加的简单. 

$xmlDoc = new MiniXMLDoc(); 
$xmlRoot =& $xmlDoc->getRoot(); 
$childElement =& $xmlRoot->createChild(\'achild\'); 
$childElement->attribute(\'name\', \'annie\'); 
$childElement->text(\'This element has attributes and children, such as this\'); 
$image =& $childElement->createChild(\'image\'); 
$image->attribute(\'location\', \'http://psychogenic.com/image.png\'); 
$childElement->text(\'image and little\'); 
$orphan =& $xmlDoc->createElement(\'song\'); 
$orphan->text(\'tomorrow, tomorrow\'); 
$childElement->appendChild($orphan); 
print $xmlDoc->toString(); 

添加一个子元素,有两种方式,第一种是直接该结点createChild,第二种是先xmlDoc先createElement,然后,该结点在appendChild. 

最后打印出来的结果是: 
<?xml version="1.0"?> 
<achild name="annie" eyes="#0000FF" hair="#FF0000"> 
This element has attributes and children, such as this 
<image location="http://psychogenic.com/image.png" /> 
image and little 
<song> tomorrow, tomorrow </song> 
</achild> 


可以很明显的看得出,miniXML的使用方法是非常简单的,尤其是对于简单的保存数据的XML文件,更是如此,详细可以看miniXML提供的例子.此处不详说. 

========================================================================= 

解析 

minixml文件结构是: 
minixml.inc.php 
------classes 
-----------doc.inc.php element.inc.php node.inc.php treecomp.inc.php 

详细的API解释说明,在官方网站上有介绍: http://minixml.psychogenic.com/api.html.
PHP5中使用DOM控制XML实现代码
PHP 面向对象 final类与final方法
在Windows下编译适用于PHP 5.2.12及5.2.13的eAccelerator.dll(附下载)
PHP执行linux系统命令的常用函数使用说明
Windows下安装Memcached的步骤说明
php file_get_contents函数轻松采集html数据
PHP最常用的ini函数分析 针对PHP.ini配置文件
php将数据库中所有内容生成静态html文档的代码
php Smarty模板生成html文档的方法
Fatal error: Call to undefined function curl_init()解决方法
用PHP实现读取和编写XML DOM代码
mysql From_unixtime及UNIX_TIMESTAMP及DATE_FORMAT日期函数
libmysql.dll与php.ini是否真的要拷贝到c:\windows目录下呢
php下使用SimpleXML 处理XML 文件
php读取xml实例代码
PHP 时间转换Unix时间戳代码
php下将XML转换为数组
高级php注入方法集锦第1/2页
php正则校验用户名介绍
php下intval()和(int)转换使用与区别
用PHP与XML联手进行网站编程代码实例
php utf-8转unicode的函数第1/2页
PHP insert语法详解
快速配置PHPMyAdmin方法
php中对xml读取的相关函数的介绍一
WindowsXP中快速配置Apache+PHP5+Mysql
CodeIgniter php mvc框架 中国网站
开源SNS系统-ThinkSNS
php.ini中的php-5.2.0配置指令详解
php下判断数组中是否存在相同的值array_unique
修改php.ini实现Mysql导入数据库文件最大限制的修改方法
php下过滤HTML代码的函数
PHP+Tidy-完美的XHTML纠错+过滤
用PHP实现的生成静态HTML速度快类库
用 PHP5 轻松解析 XML
php5 and xml示例
PHP 和 XML: 使用expat函数(三)
©2014-2024 dbsqp.com