?? admin_help.php
字號:
<?php
/**
* ----------------------------------------------
* Advanced Poll 2.0.3 (PHP)
* Copyright (c)2001 Chi Kien Uong
* URL: http://www.proxy2.de
* ----------------------------------------------
*/
$include_path = dirname(__FILE__);
$base_path = dirname($include_path);
require "./common.inc.php";
$path = $base_path;
if (eregi("WIN",PHP_OS)) {
$path = str_replace("\\","/",$path);
}
if (ereg("^3.",PHP_VERSION)) {
$include_statement = "include";
} else {
$version = ereg_replace("([^0-9])", "", PHP_VERSION);
$version = $version / pow (10, strlen($version) - 1);
$include_statement = ($version >= 4.02) ? "include_once" : "include";
}
$CLASS["template"]->set_templatefiles(array(
"admin_help" => "admin_help.html"
));
$admin_help = $CLASS["template"]->pre_parse("admin_help");
no_cache_header();
eval("echo \"$admin_help\";");
?>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -