當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Loader::validate方法代碼示例

本文整理匯總了PHP中think\Loader::validate方法的典型用法代碼示例。如果您正苦於以下問題:PHP Loader::validate方法的具體用法?PHP Loader::validate怎麽用?PHP Loader::validate使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在think\Loader的用法示例。


在下文中一共展示了Loader::validate方法的13個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: index

 /**
  * 登陸
  * @param  string $callback 登陸成功後的回調地址
  */
 public function index($callback = '')
 {
     if (IS_POST) {
         $validate = Loader::validate('Login');
         $data = $this->request->post();
         if (config('verify_code')) {
             $validateResult = $validate->check($data);
         } else {
             $validateResult = $validate->scene('not_verify')->check($data);
         }
         if (!$validateResult) {
             return $this->error($validate->getError(), '');
         }
         $user = Db::name('Member')->where('account', $data['account'])->find();
         if (!$user) {
             return $this->error('用戶不存在', '');
         } elseif ($user['status'] != 1) {
             return $this->error('用戶被禁用', '');
         } elseif ($user['password'] != umd5($data['password'])) {
             logs('登陸失敗:密碼錯誤', '', $user['id']);
             return $this->error('密碼錯誤', '');
         } else {
             self::autoLogin($user);
             return $this->success('登陸成功', $callback ? $callback : url('system/index/index'));
         }
     } else {
         if (isLogin()) {
             $this->redirect(url('system/index/index'));
         }
         return view();
     }
 }
開發者ID:cjango,項目名稱:cwms,代碼行數:36,代碼來源:Login.php

示例2: add

 /**
  * [add description]
  */
 public function add()
 {
     if (IS_POST) {
         $data = $this->request->post();
         $validate = Loader::validate('Auth');
         if (!$validate->check($data)) {
             return $this->error($validate->getError());
         }
         $data = ['title' => $data['title'], 'create_time' => NOW_TIME, 'update_time' => 0, 'status' => $data['status'], 'remark' => $data['remark'], 'rules' => ''];
         if (Db::name('Auth')->insert($data)) {
             return $this->success();
         } else {
             return $this->error();
         }
     } else {
         return $this->fetch('edit');
     }
 }
開發者ID:cjango,項目名稱:cwms,代碼行數:21,代碼來源:Auth.php

示例3: password

 /**
  * 修改密碼
  */
 public function password()
 {
     if (IS_POST) {
         $data = $this->request->post();
         $validate = Loader::validate('Member');
         if (!$validate->scene('changepass')->check($data)) {
             return $this->error($validate->getError());
         }
         $passData = ['password' => umd5($data['newpass']), 'update_time' => NOW_TIME];
         if (Db::name('Member')->where('id', UID)->update($passData)) {
             return $this->success('密碼修改成功');
         } else {
             return $this->error();
         }
     } else {
         return $this->fetch();
     }
 }
開發者ID:cjango,項目名稱:cwms,代碼行數:21,代碼來源:Index.php

示例4: edit

 /**
  * [edit description]
  * @param  integer $id [description]
  */
 public function edit($id)
 {
     if (IS_POST) {
         $data = $this->request->post();
         $validate = Loader::validate('Category');
         if (!$validate->check($data)) {
             return $this->error($validate->getError());
         }
         if (Loader::model('Category')->update($data)) {
             return $this->success();
         } else {
             return $this->error();
         }
     } else {
         $this->assign('info', Db::name('Category')->find($id));
         $this->assign('upcate_list', Loader::model('Category')->treeSelect('', $id));
         return $this->fetch('edit');
     }
 }
開發者ID:cjango,項目名稱:cwms,代碼行數:23,代碼來源:Category.php

示例5: edit

 /**
  * 編輯
  * @param  [type] $id 主鍵
  */
 public function edit($id)
 {
     if (IS_POST) {
         $data = $this->request->post();
         $validate = Loader::validate('Menu');
         if (!$validate->check($data)) {
             return $this->error($validate->getError());
         }
         if (Loader::model('Menu')->update($data)) {
             session('system_menu_list', null);
             return $this->success();
         } else {
             return $this->error();
         }
     } else {
         $this->assign('up_menus', self::_treeShow($id));
         $this->assign('info', Db::name('Menu')->where('id', $id)->find());
         return $this->fetch();
     }
 }
開發者ID:cjango,項目名稱:cwms,代碼行數:24,代碼來源:Menu.php

示例6: validateData

 /**
  * 自動驗證數據
  * @access protected
  * @param array $data 驗證數據
  * @return bool
  */
 protected function validateData($data)
 {
     if (!empty($this->validate)) {
         $info = $this->validate;
         if (is_array($info)) {
             $validate = Loader::validate();
             $validate->rule($info['rule']);
             $validate->message($info['msg']);
         } else {
             $name = is_string($info) ? $info : $this->name;
             if (strpos($name, '.')) {
                 list($name, $scene) = explode('.', $name);
             }
             $validate = Loader::validate($name);
             if (!empty($scene)) {
                 $validate->scene($scene);
             }
         }
         if (!$validate->check($data)) {
             $this->error = $validate->getError();
             if ($this->failException) {
                 throw new ValidateException($this->error);
             } else {
                 return false;
             }
         }
         $this->validate = null;
     }
     return true;
 }
開發者ID:pangPython,項目名稱:iNewsCMS,代碼行數:36,代碼來源:Model.php

示例7: validate

 /**
  * 實例化驗證器
  * @param string    $name 驗證器名稱
  * @param string    $layer 業務層名稱
  * @param bool      $appendSuffix 是否添加類名後綴
  * @return \think\Validate
  */
 function validate($name = '', $layer = 'validate', $appendSuffix = false)
 {
     return Loader::validate($name, $layer, $appendSuffix);
 }
開發者ID:pangPython,項目名稱:iNewsCMS,代碼行數:11,代碼來源:helper.php

示例8: validate

 /**
  * 驗證數據
  * @access protected
  * @param array        $data     數據
  * @param string|array $validate 驗證器名或者驗證規則數組
  * @param array        $message  提示信息
  * @param bool         $batch    是否批量驗證
  * @param mixed        $callback 回調方法(閉包)
  * @return array|string|true
  * @throws ValidateException
  */
 protected function validate($data, $validate, $message = [], $batch = false, $callback = null)
 {
     if (is_array($validate)) {
         $v = Loader::validate();
         $v->rule($validate);
     } else {
         if (strpos($validate, '.')) {
             // 支持場景
             list($validate, $scene) = explode('.', $validate);
         }
         $v = Loader::validate($validate);
         if (!empty($scene)) {
             $v->scene($scene);
         }
     }
     // 是否批量驗證
     if ($batch || $this->batchValidate) {
         $v->batch(true);
     }
     if (is_array($message)) {
         $v->message($message);
     }
     if ($callback && is_callable($callback)) {
         call_user_func_array($callback, [$v, &$data]);
     }
     if (!$v->check($data)) {
         if ($this->failException) {
             throw new ValidateException($v->getError());
         } else {
             return $v->getError();
         }
     } else {
         return true;
     }
 }
開發者ID:top-think,項目名稱:framework,代碼行數:46,代碼來源:Controller.php

示例9: edit

 /**
  * 編輯配置
  * @param  integer $id 配置主鍵
  */
 public function edit($id)
 {
     if (IS_POST) {
         $data = $this->request->post();
         $validate = Loader::validate('Config');
         if (!$validate->check($data)) {
             return $this->error($validate->getError());
         }
         if (Loader::model('Config')->update($data)) {
             Cache::clear();
             return $this->success();
         } else {
             return $this->error();
         }
     } else {
         $this->assign('info', Db::name('Config')->find($id));
         return $this->fetch();
     }
 }
開發者ID:cjango,項目名稱:cwms,代碼行數:23,代碼來源:Config.php

示例10: validateData

 /**
  * 自動驗證當前數據對象值
  * @access public
  * @return bool
  */
 public function validateData()
 {
     if (!empty($this->validate)) {
         $info = $this->validate;
         if (is_array($info)) {
             $validate = Loader::validate(Config::get('default_validate'));
             $validate->rule($info['rule']);
             $validate->message($info['msg']);
         } else {
             $name = is_string($info) ? $info : $this->name;
             if (strpos($name, '.')) {
                 list($name, $scene) = explode('.', $name);
             }
             $validate = Loader::validate($name);
             if (!empty($scene)) {
                 $validate->scene($scene);
             }
         }
         if (!$validate->check($this->data)) {
             $this->error = $validate->getError();
             return false;
         }
         $this->validate = null;
     }
     return true;
 }
開發者ID:xuyi5918,項目名稱:ipensoft,代碼行數:31,代碼來源:Model.php

示例11: keyword_edit

 /**
  * 編輯關鍵字
  * @return [type]
  */
 public function keyword_edit($id)
 {
     if (IS_POST) {
         $data = $this->request->post();
         $validate = Loader::validate('WechatKeyword');
         if (!$validate->check($data)) {
             return $this->error($validate->getError());
         }
         if (Loader::model('WechatKeyword')->update($data)) {
             return $this->success('', url('system/weixin/keyword'));
         } else {
             return $this->error();
         }
     } else {
         $info = Db::name('WechatKeyword')->find($id);
         $this->assign('contentType', self::keyword_type($info['type'], $info['content']));
         $this->assign('info', $info);
         return $this->fetch();
     }
 }
開發者ID:cjango,項目名稱:cwms,代碼行數:24,代碼來源:Weixin.php

示例12: edit

 /**
  * 編輯
  * @param  [type] $id [description]
  */
 public function edit($id)
 {
     if (IS_POST) {
         $data = $this->request->post();
         $validate = Loader::validate('Member');
         if (!$validate->scene('edit')->check($data)) {
             return $this->error($validate->getError());
         }
         if (Loader::model('Member')->update($data)) {
             logs('用戶編輯成功', $data);
             return $this->success();
         } else {
             return $this->error();
         }
     } else {
         $level = Db::name('member')->find($id);
         $map = ['id' => ['neq', 1], 'status' => 1, 'level' => $level['level'] - 1];
         $list = Db::name('member')->where($map)->field('id,nickname')->select();
         $this->assign('list', $list);
         $info = Db::name('Member')->find($id);
         $this->assign('info', $info);
         return $this->fetch();
     }
 }
開發者ID:cjango,項目名稱:cwms,代碼行數:28,代碼來源:Member.php

示例13: validate

 /**
  * 驗證數據
  * @access protected
  * @param array $data 數據
  * @param string|array $validate 驗證器名或者驗證規則數組
  * @param array $message 提示信息
  * @param mixed $callback 回調方法(閉包)
  * @return true|string|array
  */
 public function validate($data, $validate, $message = [], $callback = null)
 {
     if (is_array($validate)) {
         $v = Loader::validate(Config::get('default_validate'));
         $v->rule($validate);
     } else {
         if (strpos($validate, '.')) {
             // 支持場景
             list($validate, $scene) = explode('.', $validate);
         }
         $v = Loader::validate($validate);
         if (!empty($scene)) {
             $v->scene($scene);
         }
     }
     if (is_array($message)) {
         $v->message($message);
     }
     if (is_callable($callback)) {
         call_user_func_array($callback, [$v, &$data]);
     }
     if (!$v->check($data)) {
         return $v->getError();
     } else {
         return true;
     }
 }
開發者ID:xuyi5918,項目名稱:ipensoft,代碼行數:36,代碼來源:Controller.php


注:本文中的think\Loader::validate方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。