コード例 #1
0
ファイル: setting.php プロジェクト: jwcn/statistics
function setting()
{
    $act = isset($_GET['act']) ? $_GET['act'] : 'home';
    $err_msg = $notice_msg = $suc_msg = $ip_list_str = '';
    switch ($act) {
        case 'save':
            if (empty($_POST['detect_port'])) {
                $err_msg = "探测端口不能为空";
                break;
            }
            $detect_port = (int) $_POST['detect_port'];
            if ($detect_port < 0 || $detect_port > 65535) {
                $err_msg = "探测端口不合法";
                break;
            }
            $suc_msg = "保存成功";
            \Config\Config::$ProviderPort = $detect_port;
            saveDetectPortToCache();
            break;
        default:
            $detect_port = \Config\Config::$ProviderPort;
    }
    include ST_ROOT . '/Views/header.tpl.php';
    include ST_ROOT . '/Views/setting.tpl.php';
    include ST_ROOT . '/Views/footer.tpl.php';
}
コード例 #2
0
<?php

\Config\Config::$ProviderPort = 55858;