if (!($fp = fopen($this->file, "r")))
{
die("Could not read $this->file"),
}
// parse data
while ($xml = fread($fp, 4096))
{
if (!xml_parse($this->xp, $xml, feof($fp)))
{
die("XML parser error: " .
xml_error_string(xml_get_error_code($this->xp))),
}
}
// destroy parser
xml_parser_free($this->xp),
}
// opening tag handler
function elementBegin($parser, $name, $attributes)
{
$this->currentTag = $name,
// set flag if entering
if ($name == "ITEM")
{
$this->flag = 1,
}
else if ($name == "CHANNEL")
{
$this->flag = 2,
}
}
// closing tag handler
function elementEnd($parser, $name)
{
$this->currentTag = "",
// set flag if exiting
if ($name == "ITEM")
{
$this->count++,
$this->flag = 0,
}
else if ($name == "CHANNEL")
{
$this->flag = 0,
}
}
// character data handler
function characterData($parser, $data)
{
$data = trim(htmlspecialchars($data)),
if ($this->currentTag == "TITLE" || $this->currentTag ==
"LINK" || $this->currentTag == "DESCRIPTION")
{
// add data to $channels[] or $items[] array
if ($this->flag == 1)
{
$this->items[$this->count][strtolower($this->currentTag)] .= $data,
}
else if ($this->flag == 2)
{
$this->channel[strtolower($this->currentTag)] .= $data,
}
}
}
// return an associative array containing channel information
// (the $channel[] array)
function getChannelInfo()
{
return $this->channel,
}
// return an associative array of arrays containing item
information
// (the $items[] array)
function getItems()
{
return $this->items,
}
}
?>
在使用这个类之前,我要特别花几分钟指出其中的一行代码——即上面对xml_set_object()函数调用的那一行。
现在的问题是如何使用这个类实际生成具有多个内容来源的Web页。
include("class.RDFParser.php"),
// how many items to display in each channel
$maxItems = 5,
?>
basefont face="Verdana">
valign=top align=left> // get and parse freshmeat.net channel $f = new RDFParser(), $f->setResource("http://www.freshmeat.net/backend/fm-releases.rdf"), $f->parseResource(), $f_channel = $f->getChannelInfo(), $f_items = $f->getItems(), // now format and print it... ?> The latest from href= echo $f_channel["link"], ?>> echo $f_channel["title"], ?> br> ul> // iterate through items array for ($x=0, $xmaxItems, $x++) { if (is_array($f_items[$x])) { // print data $item = $f_items[$x], echo "li>href=" . $item["link"] . ">" . $item["title"] . "", } } ?> ul> |
i>Primary page content herei> |
valign=top align=left> // get and parse slashdot.org channel $s = new RDFParser(), $s->setResource("http://slashdot.org/slashdot.rdf"), $s->parseResource(), $s_channel = $s->getChannelInfo(), $s_items = $s->getItems(), // now format and print it... ?> The latest from href= echo $s_channel["link"], ?>> echo $s_channel["title"], ?> br> ul> // iterate through items array for ($x=0, $xmaxItems, $x++) { if (is_array($s_items[$x])) { // print data $item = $s_items[$x], echo "li>href=" . $item["link"] . ">" . $item["title"] . "", } } ?> ul> |
这段代码相当简单。一旦你用“new”关键字生成一个类的实例,
$f = new RDFParser(),
那么就可以用类方法来设置要分析的RDF文件的位置,
$f->setResource("http://www.freshmeat.net/backend/fm-releases.rdf"),
$f->parseResource(),
并且获取$channel和$items数组,以用于后面的处理。
$f_channel = $f->getChannelInfo(),
$f_items = $f->getItems(),
?>
The latest from href= echo $f_channel["link"], ?>> echo
$f_channel["title"], ?> br> ul> // iterate through items array
for ($x=0, $xmaxItems, $x++) {
if (is_array($f_items[$x]))
{
// print data
$item = $f_items[$x],

热AI工具

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

Video Face Swap
使用我们完全免费的人工智能换脸工具轻松在任何视频中换脸!

热门文章

热工具

禅工作室 13.0.1
功能强大的PHP集成开发环境

Atom编辑器mac版下载
最流行的的开源编辑器

Dreamweaver CS6
视觉化网页开发工具

WebStorm Mac版
好用的JavaScript开发工具

DVWA
Damn Vulnerable Web App (DVWA) 是一个PHP/MySQL的Web应用程序,非常容易受到攻击。它的主要目标是成为安全专业人员在合法环境中测试自己的技能和工具的辅助工具,帮助Web开发人员更好地理解保护Web应用程序的过程,并帮助教师/学生在课堂环境中教授/学习Web应用程序安全。DVWA的目标是通过简单直接的界面练习一些最常见的Web漏洞,难度各不相同。请注意,该软件中