仓酷云

标题: PHP网站制作之若何用PHP把RDF内容拔出Web站点当中(5)... [打印本页]

作者: 灵魂腐蚀    时间: 2015-2-4 00:03
标题: PHP网站制作之若何用PHP把RDF内容拔出Web站点当中(5)...
你的确对PHP有兴趣,那么选择教材也是很重要的。   

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 <channel> or <item> block
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 <channel> or <item> block
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,
}

}
?>
假如你对PHP类较为熟习的话,那末了解这段代码是相当轻易的。假如不太懂的话,那末请直接跳到文章末尾的链接局部,看一篇关于类任务道理的好文章。然后在回来持续浏览下面的代码。
在利用这个类之前,我要出格花几分钟指出个中的一行代码――即下面对xml_set_object()函数挪用的那一行。
如今的成绩是若何利用这个类实践生成具有多个内容来历的Web页。
<?
include("class.RDFParser.php"),
// how many items to display in each channel
$maxItems = 5,
?>
<html>
<head>
<basefont face="Verdana">
<body>

<table width="100%" border="0" cellspacing="5" cellpadding="5"> <tr>
<!-- first cell -->
<td valign=top align=left>
<font size="-1">
<?
// 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 <a href=<? echo $f_channel["link"], ?>><? echo
$f_channel["title"], ?></a> <br> <ul> <? // iterate through items array
for ($x=0, $x<$maxItems, $x++) {
if (is_array($f_items[$x]))
{
// print data
$item = $f_items[$x],
echo "<li><a href=" . $item["link"] . ">" .
$item["title"] . "</a>",
}
}
?>
</ul>
</font>
</td>

<!-- second cell -->
<td align=center width=50%>
<i>Primary page content here</i>
</td>

<!-- third cell -->
<td valign=top align=left>
<font size="-1">
<?
// 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 <a href=<? echo $s_channel["link"], ?>><? echo
$s_channel["title"], ?></a> <br> <ul> <? // iterate through items array
for ($x=0, $x<$maxItems, $x++) {
if (is_array($s_items[$x]))
{
// print data
$item = $s_items[$x],
echo "<li><a href=" . $item["link"] . ">" .
$item["title"] . "</a>",
}
}
?>
</ul>
</font>
</td>

</tr>
</table>

</body>
</head>
</html>

这段代码相当复杂。一旦你用“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 <a href=<? echo $f_channel["link"], ?>><? echo
$f_channel["title"], ?></a> <br> <ul> <? // iterate through items array
for ($x=0, $x<$maxItems, $x++) {
if (is_array($f_items[$x]))
{
// print data
$item = $f_items[$x],
可以说你的马步已经扎的差不多了,接下来就要开始练把势的时候了,如果有条件的话,用笔或者打印一个简易的PHP手册在身上,时不时的摸出来看看,记得,去WC也不能放过(^2^)。
作者: 爱飞    时间: 2015-2-4 08:24
兴趣是最好的老师,百度是最好的词典。
作者: 柔情似水    时间: 2015-2-8 17:49
在学习的过程中不能怕麻烦,不能有懒惰的思想。学习php首先应该搭建一个lamp环境或者是wamp环境。这是学习php开发的根本。虽然网络上有很多集成的环境,安装很方便,使用起来也很稳定、
作者: admin    时间: 2015-2-25 21:49
曾经犯过一个很低级的错误,我在文件命名的时候用了一个横线\\\\\\\'-\\\\\\\' 号,结果找了好几个小时的错误,事实是命名的时候 是不能用横线 \\\\\\\'-\\\\\\\' 的,应该用的是下划线  \\\\\\\'_\\\\\\\' ;
作者: 小妖女    时间: 2015-3-8 06:12
使用 jquery 等js框架的时候,要随时注意浏览器的更新情况,不然很容易发生框架不能使用。
作者: 简单生活    时间: 2015-3-16 09:28
遇到出错的时候,我经常把错误信息直接复制到 google的搜索栏,一般情况都是能搜到结果的,不过有时候会搜出来一大片英文的出来,这时候就得过滤一下,吧中文的弄出来,挨着式方法。
作者: 深爱那片海    时间: 2015-3-22 22:08
遇到出错的时候,我经常把错误信息直接复制到 google的搜索栏,一般情况都是能搜到结果的,不过有时候会搜出来一大片英文的出来,这时候就得过滤一下,吧中文的弄出来,挨着式方法。
作者: 若天明    时间: 2015-3-22 22:08
php里的数组为空的时候是不能拿来遍历的;(这个有点低级啊,不过我刚被这个边界问题墨迹了好长一会)
作者: 金色的骷髅    时间: 2015-3-22 22:08
开发工具也会慢慢的更专业,每个公司的可能不一样,但是zend studio是个大伙都会用的。
作者: 精灵巫婆    时间: 2015-3-22 22:54
这些中手常用的知识,当你把我说的这些关键字都可以熟练运用的时候,你可以选择自己
作者: 飘灵儿    时间: 2015-3-27 02:08
本文当是我的笔记啦,遇到的问题随时填充
作者: 灵魂腐蚀    时间: 2015-3-27 08:08
当然这种网站的会员费就几十块钱。
作者: 透明    时间: 2015-4-3 04:30
本人接触php时间不长,算是phper中的小菜鸟一只吧。由于刚开始学的时候没有名师指,碰过不少疙瘩,呗很多小问题卡过很久,白白浪费不少宝贵的时间,在次分享一些子的学习的心得。
作者: 莫相离    时间: 2015-4-10 06:36
最后祝愿,php会给你带来快乐的同时 你也会给他带来快乐。
作者: 兰色精灵    时间: 2015-4-12 15:21
多看优秀程序员编写的代码,仔细理解他们解决问题的方法,对自身有很大的帮助。
作者: 乐观    时间: 2015-4-21 13:27
在我安装pear包的时候老是提示,缺少某某文件,才发现 那群extension 的排列是应该有一点的顺序,而我安装的版本的排序不是正常的排序。没办法我只好把那群冒号加了上去,只留下我需要使用的扩展。
作者: 活着的死人    时间: 2015-4-26 23:11
如果你已经到这种程度了,那么你已经可以做我的老师了。其实php也分很多的区域,
作者: 愤怒的大鸟    时间: 2015-6-10 00:12
没接触过框架的人,也不用害怕,其实框架就是一种命名规范及插件,学会一个框架其余的框架都很好上手的。
作者: 再现理想    时间: 2015-6-11 19:26
多看优秀程序员编写的代码,仔细理解他们解决问题的方法,对自身有很大的帮助。




欢迎光临 仓酷云 (http://ckuyun.com/) Powered by Discuz! X3.2