channel_title = $title;
$this->channel_link = $link;
$this->channel_description = $description;
$this->channel_imgurl = $imgurl;
$this->pubDate = Date('Y-m-d H:i:s', time());
$this->lastBuildDate = Date('Y-m-d H:i:s', time());
}
/**
+----------------------------------------------------------
* 设置私有变量
+----------------------------------------------------------
* @access public
+----------------------------------------------------------
* @param string $key 变量名
* @param string $value 变量的值
+----------------------------------------------------------
*/
public function Config($key,$value)
{
$this->{$key} = $value;
}
/**
+----------------------------------------------------------
* 添加RSS项
+----------------------------------------------------------
* @access public
+----------------------------------------------------------
* @param string $title 日志的标题
* @param string $link 日志的链接
* @param string $description 日志的摘要
* @param string $pubDate 日志的发布日期
+----------------------------------------------------------
*/
function AddItem($title, $link, $description, $pubDate)
{
$this->items[] = array('title' => $title, 'link' => $link, 'description' => $description, 'pubDate' => $pubDate);
}
/**
+----------------------------------------------------------
* 输出RSS的XML为字符串
+----------------------------------------------------------
* @access public
+----------------------------------------------------------
* @return string
+----------------------------------------------------------
*/
public function Fetch()
{
$rss .= "\r\n";
$rss .= "\r\n";
$rss .= "\r\n";
$rss .= "channel_title}]]> \r\n";
$rss .= "channel_description}]]> \r\n";
$rss .= "{$this->channel_link}\r\n";
$rss .= "{$this->language} \r\n";
if (!empty($this->pubDate))
$rss .= "{$this->pubDate} \r\n";
if (!empty($this->lastBuildDate))
$rss .= "{$this->lastBuildDate} \r\n";
if (!empty($this->generator))
$rss .= "{$this->generator} \r\n";
$rss .= "5 \r\n";
if (!empty($this->channel_imgurl)) {
$rss .= "\r\n";
$rss .= "channel_title}]]> \r\n";
$rss .= "{$this->channel_link}\r\n";
$rss .= "{$this->channel_imgurl} \r\n";
$rss .= " \r\n";
}
for ($i = 0; $i < count($this->items); $i++) {
$rss .= "- \r\n";
$rss .= "
items[$i]['title']}]]> \r\n";
$rss .= "{$this->items[$i]['link']}\r\n";
$rss .= "items[$i]['description']}]]> \r\n";
$rss .= "{$this->items[$i]['pubDate']} \r\n";
$rss .= " \r\n";
}
$rss .= " \r\n ";
return $rss;
}
/**
+----------------------------------------------------------
* 输出RSS的XML到浏览器
+----------------------------------------------------------
* @access public
+----------------------------------------------------------
* @return void
+----------------------------------------------------------
*/
public function Display()
{
header("Content-Type: text/xml; charset=utf-8");
echo $this->Fetch();
exit;
}
}
?> 0
0
相关文章
PHP 中 fopen() 返回 true 的真相:运算符优先级导致的赋值陷阱
PHP 中 fopen() 返回 true 的真相:警惕逻辑运算符的赋值陷阱
PHP 中 fopen() 返回布尔值 true 的根本原因与运算符优先级有关
NetBeans如何运行PHP脚本_NetBeans运PHP脚本要点【精要】
PHP怎么注释数组_PHP数组注释形式【实用】
相关标签:
本站声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门AI工具
相关专题
PHP WebSocket 实时通信开发
本专题系统讲解 PHP 在实时通信与长连接场景中的应用实践,涵盖 WebSocket 协议原理、服务端连接管理、消息推送机制、心跳检测、断线重连以及与前端的实时交互实现。通过聊天系统、实时通知等案例,帮助开发者掌握 使用 PHP 构建实时通信与推送服务的完整开发流程,适用于即时消息与高互动性应用场景。
13
2026.01.19
热门下载
精品课程
相关推荐
/
热门推荐
/
最新课程
最新文章









