?? 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 + -