当前位置: 首页>>代码示例>>PHP>>正文


PHP Base_Controller::input方法代码示例

本文整理汇总了PHP中Base_Controller::input方法的典型用法代码示例。如果您正苦于以下问题:PHP Base_Controller::input方法的具体用法?PHP Base_Controller::input怎么用?PHP Base_Controller::input使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Base_Controller的用法示例。


在下文中一共展示了Base_Controller::input方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: input

 protected function input()
 {
     parent::input();
     if (isset($param['logout'])) {
         $logout = $this->clear_int($param['logout']);
         if ($logout) {
             $this->ob_user->logout();
         }
     }
     $this->ob_user = Model_User::get_instance();
     $this->ob_model = Model::get_instance();
     $this->title = 'Massage Practice | ';
     /// разбан через час
     $time_clean = time() - 3600 * UNBAN;
     $this->ob_user->clear_fail($time_clean);
     //проверяем неудачные попытки
     $ip = $_SERVER['REMOTE_ADDR'];
     $fail = $this->ob_user->get_fails($ip);
     $fail = $fail[0]['counter'];
     if (isset($_POST['auth_submit'])) {
         if ($fail < 3) {
             $login = $this->clear_str($_POST['auth_login']);
             $pass = $this->clear_str($_POST['auth_pass']);
             try {
                 $id = $this->ob_user->check_user($login, $pass);
                 //записываем id
                 $this->user_id = $id;
                 $this->ob_user->set();
                 $this->redirect();
             } catch (AuthException $e) {
                 if (!$fail) {
                     $this->ob_user->first_fail($ip);
                 } else {
                     $this->ob_user->update_fail($ip, $fail);
                 }
             }
         } else {
             try {
                 throw new AuthException('Превышено число неправильных попыток! Повторите через 1 час');
             } catch (AuthException $e) {
                 $e->getMessage();
             }
         }
     }
     if (isset($_COOKIE['NOU'])) {
         $id_update = $this->ob_user->unpackage();
         $this->user_id = $id_update[0];
         $this->i_user = $this->ob_user->get_user($this->user_id);
     }
 }
开发者ID:AlexKFU,项目名称:massage,代码行数:50,代码来源:Base.php


注:本文中的Base_Controller::input方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。