rss.php

来自「速度很快的PHP论坛源程序」· PHP 代码 · 共 30 行

PHP
30
字号
<?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 + =
减小字号Ctrl + -
显示快捷键?