📄 library.php
字号:
<?php
if (!defined('ROOT'))
exit('Access Denied');
function cltop($fid,$s){
$fid = abs(intval($fid));
$s = abs(intval($s));
if (false === ($str = read_cache('forum_cltop_'.$fid.'_'.$s, rand(30,35)))){
$str='';
if(call_func('forum_cltop')){
$str=forum_cltop($fid,$s);
}
write_cache('forum_cltop_'.$fid.'_'.$s, $str);
}
return $str;
}
call_func('forum_post');
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -