并非所有的站点都包含提要,但是跟进某个地方的所有改动仍然是很有用的。本文将介绍如何使用 Zend_HTTP_Client 模块创建代理,从而将数据提取到提要阅读器界面中。在本文中,您将学到:
如何使用 Zend_HTTP_Client 模块加载网站数据。
如何保存提要条目的全文以及那些不支持提要的网页的全文。
如何在提要阅读器界面中阅读已保存提要条目的全文。
在本文的末尾,将完成提要阅读器应用程序的框架。首先,修改数据库纲要,其次,更新代码以支持新的纲要,然后添加将提要条目和网页保存到数据库中的功能。最后,使用 Zend_HTTP_Client 模块支持用户有选择地将条目保存到数据库中,并在已更新的在线提要阅读器中查看它们。
更新数据库纲要
为了将提要条目保存到提要阅读器界面中,首先我们需要更新数据库纲要。在 MySQL 控制台中键入清单 1 中的SQL 语句。
清单 1. 更改数据库纲要
drop table feeds;
create table feeds
(feedname varchar(256), link varchar(512), rss varchar(5));
insert into feeds values
('Fox Sports',
'http://feeds.feedburner.com/foxsports/rss/headlines',
'true'),
('Google News',
'http://news.google.com/?output=rss',
'true'),
('Yahoo News',
'http://rss.news.yahoo.com/rss/topstories',
'true'),
('phpbb',
'http://www.phpbb.com/phpBB/viewforum.php?f=14',
'false'),
('MySQL Forums :: PHP',
'http://forums.mysql.com/list.php?52',
'false'),
('SitePoint Forums :: PHP',
'http://www.sitepoint.com/forums/forumdisplay.php?forumid=34',
'false');
drop table savedentries;
(本文来源于图老师网站,更多请访问http://m.tulaoshi.com/php/)create table savedentries
(username varchar(20), feedname varchar(256), channelname varchar(256),
link varchar(512), entrysaved varchar(5), entrydata varchar(307200));
您能看到 feeds 表添加了一个新的字段:rss。这个字段用于辨别该提要是 RSS 提要还是不支持提要的网页。订阅列表中添加了另外三个不同 PHP 论坛的提要。请注意,对于第 3 部分中的提要,这个新字段值为 true,而三条新提要的值则为 false,这说明它们是网页,而非 RSS 提要。savedentries 表有两个新的字段:entrysaved 和 entrydata。entrysaved 字段说明 entrydata 字段中的数据是有效数据。entrydata 字段保存了该文章的全文。新的可订阅网页如图 1 所示。
现在需要回到第 3 部分的代码中做一些更改。
更新 IndexController 类
稍后我们将对 viewFeeds 视图进行更新,这需要当前用户所订阅的非 RSS 提要的列表,该列表列出了已订阅的提要和网页。在 IndexController 类中更改 indexAction 方法,如下所示。
清单 2. IndexController 类中的 indexAction 方法
public function indexAction()
{
...
$select-where('feeds.feedname=subscribedfeeds.feedname');
$select-where('feeds.rss=?', 'true');
$rssResults = $db-fetchAll($select);
$select = $db-select();
$select-from('subscribedfeeds, feeds', '*');
$select-where('subscribedfeeds.Username = ?', $username);
$select-where('feeds.feedname=subscribedfeeds.feedname');
$select-where('feeds.rss=?', 'false');
$webResults = $db-fetchAll($select);
$view = Zend::registry('view');
$view-username = $us