📄 rss.php
字号:
<?php
/*
[DISCUZ!] rss.php - RSS feed support
This is NOT a freeware, use is subject to license terms
Version: 4.0.0
Web: http://www.comsenz.com
Copyright: 2001-2005 Comsenz Technology Ltd.
Last Modified: 2003/12/12 06:21
*/
error_reporting(E_ERROR | E_WARNING | E_PARSE);
$ttl = 10;
$fid = $HTTP_GET_VARS['fid'] && file_exists('./forumdata/cache/rss_'.$HTTP_GET_VARS['fid'].'.php') ? $HTTP_GET_VARS['fid'] : 0;
$lastupdate = 0;
if(!@(include './forumdata/cache/rss_'.$fid.'.php') || time() - $lastupdate > $ttl * 60) {
require_once './include/common.inc.php';
require_once DISCUZ_ROOT.'./include/cache.func.php';
updatecache('rss');
}
header("Content-type: application/xml");
echo $xml;
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -