📄 lang_statistic.php
字号:
<?php
if (!defined('IN_SITE')){
die('Hacking attempt!');
}
$Lang_Module = new Lang_Module_Statistic;
class Lang_Module_Statistic
{
var $data = array();
function Lang_Module_Statistic(){
//Statistic
$this->data['stat'] = 'STATISTICS';
$this->data['stat_online'] = 'Visitors online: ';
$this->data['stat_hits'] = 'Total hits: ';
$this->data['stat_queries_use'] = 'Used queries: ';
$this->data['stat_time_execute'] = 'Executed time: ';
$this->data['stat_gzip_enabled'] = 'Gzip: Enabled';
$this->data['stat_gzip_disabled'] = 'Gzip: Disabled';
$this->data['stat_cache_enabled'] = 'Script caching: Enabled';
$this->data['stat_cache_disabled'] = 'Script caching: Disabled';
}
}
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -