PHP 和 XML: 使用expat函数(一)


Posted in PHP onOctober 09, 2006

PHP 和 XML: 使用expat函数(一)

可扩展标识语言(Extensible Markup Language )明显是大多数开发人员将想要将其加入到他们的工具箱中的东西。XML是一种W3C的标准,它是开放的,语言中性的,API中性的,流式的,文本的,人类可读 的, 并且是一种将结构化数据带到web上的一种方法。XML是SGML的一个子集,它本身并不是一种标识 语言,但是 它允许作者来定义他们自已的标识语言,以便同分级数据保持更好的一致性。

现在,用PHP 分析XML文档已经不是一个象我以前在web和其它地方所看到的被覆盖得很深的专题了。 在 PHP手册中已经提供了一些对XML分析函数非常有用的信息,但是这个看上去好象就是我所能找到的 全部的信 息了。其它的语言看上去比PHP已经有了更多的关于XML的信息和工作实例,所以在这篇文章 中,我将试图为 改变这种情况作出我的一部分努力。

我将带领读者体验一个相当简单的XML的应用,那个应用是为我的网站所做的新闻系统的实现。我确实在 我的网站使用了这个应用,现在它工作的很好。如果你喜欢你可以自由地使用它。好了,让我们开始吧!

为了在PHP中使XML分析函数有效,你需要一个支持XML 的模块在你的web服务器上。这就意味着你将可能 不得不重新编译你的模块,以便可以支持XML,请参考这里来查看如何做到的更多的信息。XML 分析函数现在 真正地包含在一种SAX分析器expat中,它提供了 关于XML的简单的函数。另一种分析器是DOM分析器,它更容 易使用,关于它的一个例子就是微软的MSXML分析器组件,它可以让程序员通过操纵一种树状样式的对象来处 理结点和元素。expat分析器(或任意的SAX 分析器)允许你分析一个XML文档的实现方法是在对XML文档进行分 析的时候对不同的标记类型指定回调函数来完成的。当分析器开始分析你的XML文档并且遇上了一个标记,它 将调用你的函数,并且在继续往下 执行之前由你的函数对特定的标记进行处理。你可以把它看作是一种事件 驱动的方法。

让我们看一个使用'Newsboy'类来分析的XML文档

--------------------------------------------------------------------------------
mynews.xml

03/31/2000
Sooo Busy !

I haven't posted anything here for a while now as I have been busy with work(have to pay those
bills!).
I have just finished a neat little script that stores a complete record set in a session
variable after
doing an SQL query. The neat part is that an XML doc is stored in the session variable
an when paging
through the results (often near 1000!) the script displays 50 results at a time from the
XML doc in the
session variable instead of doing another query against the database. It takes a BIG load
off of the
database server.

03/25/2000
NewsBoy Class

Converted Newsboy to a PHP class to allow better abstraction (as far as PHP allows.)

Guess that means this is version 0.02 ?!
Newsboy will have a section of it's own soon on how to use and customize the class.

03/24/2000
NewsBoy is up!

I have just finished NewsBoy v0.01 !!!
It looks quite promising. You may ask, ""What the heck is it?!".

Well it's a simple news system for web-sites, written in PHP, that makes use of XML
for
the news data format allowing easy updating and portability between platforms.
It uses the built in expat parser for Apache.
This is just the very first version and there will be loads of improvements as the
project progresses.

03/24/2000
Romeo must Die

Saw a really cool movie today at Mann called 'Romeo must Die'
Nice fight scenes for a typical kung-fu movie with some 'Matrix' style effects.

One particular cool effect was the 'X-Ray Vision' effect that occured in various
fight scenes.
The hero, played by Jet Li, strikes a bad guy and you can see the bone in his arm
crack, in X-RAY vision.
There were some funny scenes too when Jet has to play American football with the
bad guys.
The official website for the movie is <A HREF='http://www.romeo-must-die.com'
> here </A>

<IMG SRC="http://a1996.g.akamaitech.net/7/1996/25/e586077a88e7a4/
romeomustdie.net/images/image15.jpg" WIDTH=300 >

PHP 相关文章推荐
无数据库的详细域名查询程序PHP版(1)
Oct 09 PHP
如何用PHP实现插入排序?
Apr 10 PHP
基于MySQL到MongoDB简易对照表的详解
Jun 03 PHP
php生成txt文件标题及内容的方法
Jan 16 PHP
php目录操作实例代码
Feb 21 PHP
PHP解析RSS的方法
Mar 05 PHP
PHP获取文件行数的方法
Jun 10 PHP
Yii2中OAuth扩展及QQ互联登录实现方法
May 16 PHP
PHP数据库处理封装类实例
Dec 24 PHP
Phpstorm+Xdebug断点调试PHP的方法
May 14 PHP
Windows上php5.6操作mongodb数据库示例【配置、连接、获取实例】
Feb 13 PHP
解决laravel-admin 自己新建页面里 js 需要刷新一次的问题
Oct 03 PHP
用PHP动态生成虚拟现实VRML网页
Oct 09 #PHP
其他功能
Oct 09 #PHP
PHP新手上路(十一)
Oct 09 #PHP
PHP新手上路(十二)
Oct 09 #PHP
PHP新手上路(十三)
Oct 09 #PHP
PHP新手上路(十四)
Oct 09 #PHP
PHP简介
Oct 09 #PHP
You might like
PHP学习笔记之数组篇
2011/06/28 PHP
使用PHP如何实现高效安全的ftp服务器(二)
2015/12/30 PHP
浅谈php(codeigniter)安全性注意事项
2017/04/06 PHP
代码生成器 document.write()
2007/04/15 Javascript
JQuery 弹出框定位实现方法
2010/12/02 Javascript
js禁止document element对象选中文本实现代码
2013/03/21 Javascript
jQuery让控件左右移动的三种实现方法
2013/09/08 Javascript
前端开发过程中浏览器版本的两种判定方法
2013/10/30 Javascript
Underscore.js 1.3.3 中文注释翻译说明
2015/06/25 Javascript
使用postMesssage()实现iframe跨域页面间的信息传递
2016/03/29 Javascript
AngularJS ng-blur 指令详解及简单实例
2016/07/30 Javascript
jQuery实现图片轮播效果代码
2016/09/27 Javascript
JS动态给对象添加属性和值的实现方法
2016/10/21 Javascript
深入理解javascript中concat方法
2016/12/12 Javascript
js下拉菜单生成器dropMenu使用方法详解
2017/08/01 Javascript
JavaScript解决浮点数计算不准确问题的方法分析
2018/07/09 Javascript
浅谈Vue render函数在ElementUi中的应用
2018/09/06 Javascript
[01:00]DOTA2 store: Collection of Artisan's Wonders
2015/08/12 DOTA
PyTorch快速搭建神经网络及其保存提取方法详解
2018/04/28 Python
python numpy 按行归一化的实例
2019/01/21 Python
Pycharm保存不能自动同步到远程服务器的解决方法
2019/06/27 Python
Django如何实现上传图片功能
2019/08/16 Python
HTML5获取当前地理位置并在百度地图上展示的实例
2020/07/10 HTML / CSS
英国创新设计文具、卡片和礼品包装网站:Paperchase
2018/07/14 全球购物
英语系毕业生自荐信
2013/10/31 职场文书
打架检讨书400字
2014/01/17 职场文书
金融事务专业求职信
2014/04/25 职场文书
科技节口号
2014/06/19 职场文书
2014个人四风对照检查材料思想汇报
2014/09/18 职场文书
声乐专业大学生职业生涯规划书:理想的未来需要自己去打造
2014/09/20 职场文书
单位接收函格式
2015/01/30 职场文书
财务负责人岗位职责
2015/02/03 职场文书
鼋头渚导游词
2015/02/05 职场文书
Python实现byte转integer
2021/06/03 Python
JavaScript实现外溢动态爱心的效果的示例代码
2022/03/21 Javascript
Go gRPC进阶教程gRPC转换HTTP
2022/06/16 Golang