- 浏览: 607974 次
- 性别:
- 来自: 北京
文章分类
最新评论
-
kangh:
转载的也拿出来 都不试一下 完全错误
Nginx+ffmpeg的HLS开源服务器搭建配置及开发详解 -
wangtxlz:
#cd builders/cmake#cmake .系统提示命 ...
crtmpserver流媒体服务器的介绍与搭建 -
hnraysir:
支持支持支持
手机Android音视频采集与直播推送,实现单兵、移动监控类应用 -
wuent:
把web服务器和php框架绑定到一起?真不建议这样。。。
Swoole(PHP高级Web开发框架) -
wuent:
有更详细的性能比较吗?php,python,java
PHP中的(伪)多线程与多进程
今天在PHP4环境下重新写一个接口程序,需要大量分析解析XML,PHP的xml_parse_into_struct()函数不能直接生成便于使用的数组,而SimpleXML扩展在PHP5中才支持,于是逛逛搜索引擎,在老外的网站上找到了一个不错的PHP XML操作类。
一、用法举例:
1、将XML文件解释成便于使用的数组:
- <?php
- include('xml.php'); //引用PHP XML操作类
- $xml = file_get_contents('data.xml'); //读取XML文件
- //$xml = file_get_contents("php://input"); //读取POST过来的输入流
- $data=XML_unserialize($xml);
- echo '<pre>';
- print_r($data);
- echo '</pre>';
- ?>
- <?xml version="1.0" encoding="GBK"?>
- <video>
- <upload>
- <videoid>998</videoid>
- <name><![CDATA[回忆未来]]></name>
- <memo><![CDATA[def]]></memo>
- <up_userid>11317</up_userid>
- </upload>
- </video>
利用该XML操作类生成的对应数组(汉字编码:UTF-8):
- Array
- (
- [video] => Array
- (
- [upload] => Array
- (
- [videoid] => 998
- [name] => 回忆未来
- [memo] => def
- [up_userid] => 11317
- )
- )
- )
2、将数组转换成XML文件:
- <?php
- include('xml.php');//引用PHP XML操作类
- $xml = XML_serialize($data);
- ?>
二、PHP XML操作类源代码:
- <?php
- ###################################################################################
- #
- # XML Library, by Keith Devens, version 1.2b
- # <a href="http://keithdevens.com/software/phpxml" target="_blank">http://keithdevens.com/software/phpxml</a>
- #
- # This code is Open Source, released under terms similar to the Artistic License.
- # Read the license at <a href="http://keithdevens.com/software/license" target="_blank">http://keithdevens.com/software/license</a>
- #
- ###################################################################################
- ###################################################################################
- # XML_unserialize: takes raw XML as a parameter (a string)
- # and returns an equivalent PHP data structure
- ###################################################################################
- function & XML_unserialize(&$xml){
- $xml_parser = &new XML();
- $data = &$xml_parser->parse($xml);
- $xml_parser->destruct();
- return $data;
- }
- ###################################################################################
- # XML_serialize: serializes any PHP data structure into XML
- # Takes one parameter: the data to serialize. Must be an array.
- ###################################################################################
- function & XML_serialize(&$data, $level = 0, $prior_key = NULL){
- if($level == 0){ ob_start(); echo '<?xml version="1.0" ?>',"\n"; }
- while(list($key, $value) = each($data))
- if(!strpos($key, ' attr')) #if it's not an attribute
- #we don't treat attributes by themselves, so for an emptyempty element
- # that has attributes you still need to set the element to NULL
- if(is_array($value) and array_key_exists(0, $value)){
- XML_serialize($value, $level, $key);
- }else{
- $tag = $prior_key ? $prior_key : $key;
- echo str_repeat("\t", $level),'<',$tag;
- if(array_key_exists("$key attr", $data)){ #if there's an attribute for this element
- while(list($attr_name, $attr_value) = each($data["$key attr"]))
- echo ' ',$attr_name,'="',htmlspecialchars($attr_value),'"';
- reset($data["$key attr"]);
- }
- if(is_null($value)) echo " />\n";
- elseif(!is_array($value)) echo '>',htmlspecialchars($value),"</$tag>\n";
- else echo ">\n",XML_serialize($value, $level+1),str_repeat("\t", $level),"</$tag>\n";
- }
- reset($data);
- if($level == 0){ $str = &ob_get_contents(); ob_end_clean(); return $str; }
- }
- ###################################################################################
- # XML class: utility class to be used with PHP's XML handling functions
- ###################################################################################
- class XML{
- var $parser; #a reference to the XML parser
- var $document; #the entire XML structure built up so far
- var $parent; #a pointer to the current parent - the parent will be an array
- var $stack; #a stack of the most recent parent at each nesting level
- var $last_opened_tag; #keeps track of the last tag opened.
- function XML(){
- $this->parser = &xml_parser_create();
- xml_parser_set_option(&$this->parser, XML_OPTION_CASE_FOLDING, false);
- xml_set_object(&$this->parser, &$this);
- xml_set_element_handler(&$this->parser, 'open','close');
- xml_set_character_data_handler(&$this->parser, 'data');
- }
- function destruct(){ xml_parser_free(&$this->parser); }
- function & parse(&$data){
- $this->document = array();
- $this->stack = array();
- $this->parent = &$this->document;
- return xml_parse(&$this->parser, &$data, true) ? $this->document : NULL;
- }
- function open(&$parser, $tag, $attributes){
- $this->data = ''; #stores temporary cdata
- $this->last_opened_tag = $tag;
- if(is_array($this->parent) and array_key_exists($tag,$this->parent)){ #if you've seen this tag before
- if(is_array($this->parent[$tag]) and array_key_exists(0,$this->parent[$tag])){ #if the keys are numeric
- #this is the third or later instance of $tag we've come across
- $key = count_numeric_items($this->parent[$tag]);
- }else{
- #this is the second instance of $tag that we've seen. shift around
- if(array_key_exists("$tag attr",$this->parent)){
- $arr = array('0 attr'=>&$this->parent["$tag attr"], &$this->parent[$tag]);
- unset($this->parent["$tag attr"]);
- }else{
- $arr = array(&$this->parent[$tag]);
- }
- $this->parent[$tag] = &$arr;
- $key = 1;
- }
- $this->parent = &$this->parent[$tag];
- }else{
- $key = $tag;
- }
- if($attributes) $this->parent["$key attr"] = $attributes;
- $this->parent = &$this->parent[$key];
- $this->stack[] = &$this->parent;
- }
- function data(&$parser, $data){
- if($this->last_opened_tag != NULL) #you don't need to store whitespace in between tags
- $this->data .= $data;
- }
- function close(&$parser, $tag){
- if($this->last_opened_tag == $tag){
- $this->parent = $this->data;
- $this->last_opened_tag = NULL;
- }
- array_pop($this->stack);
- if($this->stack) $this->parent = &$this->stack[count($this->stack)-1];
- }
- }
- function count_numeric_items(&$array){
- return is_array($array) ? count(array_filter(array_keys($array), 'is_numeric')) : 0;
- }
- ?>
http://blog.s135.com/post/253/ 转载
发表评论
-
nginx、php-fpm默认配置与性能–TCP socket还是unix domain socket
2015-04-02 11:14 1468前几天看到一篇博客,提到php所在服务器在大并发情况下,频 ... -
使用socket方式连接Nginx优化php-fpm性能
2015-04-01 13:49 0Nginx连接fastcgi的方式有 ... -
PHP中include和require的区别详解
2015-04-01 08:32 01、概要 require()语句的性能与includ ... -
PHP 中cookie 和 session 的分析
2015-03-31 12:33 0HP 中cookie 和session 的分析 ... -
php 经典的算法题你懂的
2015-03-31 12:31 0有5个人偷了一堆苹果,准备在第二天分赃。晚上,有一人遛出来, ... -
PHP最常用的2种设计模式工厂模式和单例模式介绍
2015-03-31 12:26 0简单来说,PHP单例模式就是一个功能用一个类来实现,并且在整 ... -
PHP 数据类型
2015-03-31 12:23 0PHP 数据类型 PHP 支持八种原始类型(type)。 ... -
PHP mcrypt启用、加密以及解密过程详解
2015-03-30 11:32 1457Mcrypt扩展库可以实现加密解密功能,就是既能将明文加密, ... -
PHP扩展实现类扩展
2015-03-27 14:08 573在第一篇文章中,我们所开发的扩展是单个函数,本篇文章看一下 ... -
PHP高级工程师的面试题
2015-03-06 10:35 01. 基本知识点 HTTP协议中几个状态码的含义:1x ... -
PHP面试中常见的面试试题与算法例子
2015-03-05 14:14 0下面是四道比较常见的题目,主要考察的是对字符串函数以及文件操 ... -
PHP实现四种常用的排序算法
2015-03-05 14:09 0插入排序(Insertion Sort),选择排序(Sele ... -
用swagger-php/ui做API测试
2015-02-13 09:46 3643功能: 1 swagger-php根据自定义的规则生成API ... -
app后端设计(0)--总目录
2015-01-23 18:03 0做了3年app相关的系统架构,api设计,先后在3个创业公司中 ... -
PHP中eAccelerator、memcached、xcache、APC 4个加速、缓存扩展的区别
2015-01-23 10:26 912这篇文章主要介绍了PHP ... -
PHP内核探索:zend_parse_parameters函数
2015-01-16 14:14 961最简单的获取函数调用者传递过来的参数便是使用zend_pars ... -
实战:用C写php扩展(二)
2015-01-16 11:05 996一、前言 在我的上一篇文章“实战:用C写php扩展(一)”里介 ... -
实战:用C写php扩展(一)
2015-01-16 11:04 10151、 前言 首先,确保你的机器安装了apache和php。假 ... -
JavaScript or PHP 来检测移动设备
2014-09-22 10:04 625iPhone & iPod Detection T ... -
YII Framework学习教程-YII的Modules(模块化)
2014-08-27 11:04 751一个相对来说大的项目。如果按照yii生成的 ...
相关推荐
这个"com.mcxiaoke.volley:library:1.0.19 library-1.0.19.jar"文件是Volley库的一个特定版本,版本号为1.0.19,它包含了一系列用于网络通信的类和方法。 Volley的核心功能包括: 1. **异步处理**:Volley默认使用...
以下是对这个XML操作类的详细说明: 1. **XML解释成数组**: 使用`XML_unserialize()`函数,可以将XML字符串或者从文件中获取的XML内容转换为PHP数组。在示例中,`file_get_contents()`用于读取XML文件,然后`XML_...
本教程将重点介绍如何在VC++中使用封装好的XML操作类,并提供一个基于VS2008验证的例子。 首先,要使用MSXML库,需要包含相关的头文件并链接对应的库。在你的项目中,添加以下预处理器定义: ```cpp #define _ATL_...
- `MarkupSTL`: 这个类可能是一个实现XML解析的基础工具,使用了STL(Standard Template Library)来处理数据。STL包括容器(如vector、list、map)、迭代器和算法,能有效管理内存和提高效率。 - `XmlDoc`: 此类...
`Markup`类为VC++的XML操作提供了一种简洁的解决方案,通过封装XML DOM接口,简化了开发过程。理解和利用这个类,可以高效地实现XML文件的读写,提高开发效率。对于需要处理XML的VC++项目,使用这样的自定义类无疑...
因此,了解如何使用JSTL进行XML操作对于提升Web应用的灵活性和可维护性至关重要。 #### 二、JSTL与XML的结合使用 ##### 2.1 XML在Web开发中的作用 XML (Extensible Markup Language) 是一种用于标记数据的标准语言...
- `XML_Test.ncb`、`XML_Test.suo.old`、`XML_Test.vcproj.7.10.old`:这些都是Visual Studio的项目相关文件,包含调试信息、用户配置和项目设置,不直接涉及XML操作。 4. **XML操作步骤**: - 解析XML文件:使用...
以上就是关于XML操作的基本介绍,通过C#的`XmlDocument`、`XmlWriter`、`XmlNode`以及`DataSet`等类,我们可以方便地实现XML的读取、写入、更新和删除。理解这些概念和用法,将有助于在实际开发中更好地处理和利用...
DOM解析器会将整个XML文档加载到内存中,形成一个树形结构,方便进行遍历和操作;而SAX解析器则采用事件驱动的方式,逐行读取XML文档,对每个元素进行处理,内存占用相对较小。根据描述,这个xmlParser库可能采用了...
"xml.rar_Markup_c 文件操作类"的主题涉及C++编程语言中处理XML文件的类库。这个压缩包包含了一些关键文件,如Markup.cpp、MyXml.cpp、Markup.h和MyXml.h,它们都是为了实现XML文件的读取、解析和写入功能而设计的。...
1. **DOM操作类**:如`XmlDocument`和`XmlNode`,用于构建XML文档的内存模型,允许开发者以对象形式访问和修改XML文档。 2. **流式读写器**:如`XmlReader`和`XmlWriter`,它们提供了快速读写XML文档的能力,适用...
总的来说,`XmlDocument`类提供了强大而灵活的功能来处理XML文档,通过遍历其节点,我们可以轻松地提取和操作XML数据。在实际开发中,根据具体需求,可以结合XPath或LINQ to XML等更高级的技术进行更复杂的查询和...
- CFile是MFC提供的一种文件操作类,可以用于打开、读取、写入和关闭文件。 - 在XML读取场景中,CFile可以用于打开XML文件,然后传递给CXMLDOMDocument的Load方法加载。 - 使用CFile时要注意文件模式设置,如"r...
MSXML是微软提供的一个COM组件,提供了多种接口(如IXMLDOMDocument、IXMLDOMNode等)来解析和操作XML文档。TinyXML则是一个轻量级的C++库,它不依赖任何特定的运行时环境,适合小型项目和嵌入式系统。 首先,让...
在C++中实现XML解析器是一项技术挑战,但通过合理的封装和设计,可以创建一个高效且易用的接口来处理XML文件。 XML文件结构由元素(Element)、属性(Attribute)、文本内容(Text Content)以及一系列的语法规则...
提供的链接“Www.2e3.org”可能是一个源码分享网站,通常这类网站会提供VB相关的代码示例和项目,包括XML操作的实例。访问此类网站可以帮助学习者找到更多关于VB和XML操作的实践代码和教程。 综上所述,XML在VB...
在Java世界中,JSTL(JavaServer Pages Standard Tag Library)是一个标准标签库,它提供了一系列的标签来简化JSP页面中的常见任务,包括XML处理。JSTL的XML部分称为JSTL XML(JSTL XML Core),它允许开发者在JSP...
使用XML DOM进行XML操作的基本步骤如下: 1. 加载XML文档:使用`DOMDocument`类的`load`或`loadXML`方法加载XML文件内容,创建一个内存中的文档对象。 2. 遍历和访问节点:通过`getElementsByTagName`、`...