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


PHP Password::validate_password方法代碼示例

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


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

示例1: login

 public function login()
 {
     $res = new stdClass();
     $res->success = FALSE;
     $data = new stdClass();
     parse_str(file_get_contents("php://input"), $data);
     $data = (object) $data;
     $this->load->model('sp_model');
     $where = 'userName="' . $data->username . '"';
     $arr = $this->sp_model->where('jwt_user', $where, 'id', 'asc');
     if (count($arr) == 1) {
         if (Password::validate_password($data->password, $arr[0]->password)) {
             $res->success = true;
             $token = array();
             $token['id'] = $arr[0]->id;
             $res->access_token = JWT::encode($token, $this->config->item('jwt_key'));
             $res->id = $arr[0]->id;
         } else {
             $res->error = 'Invalid user name or password.';
             http_response_code(401);
         }
     } else {
         $res->error = 'Invalid user name or password.';
         http_response_code(401);
     }
     $this->load->view('json', array('output' => $res));
 }
開發者ID:JUkhan,項目名稱:jwt_php,代碼行數:27,代碼來源:Account.php

示例2: login

 public function login($email, $password)
 {
     $this->db->select('*');
     $this->db->from('users');
     $this->db->where('email', $email);
     $this->db->limit(1);
     $query = $this->db->get();
     if ($query->num_rows() == 1) {
         $result = $query->result();
         if (Password::validate_password($password, $result[0]->password)) {
             return $result[0]->id;
         }
         return false;
     }
     return false;
 }
開發者ID:ericariyanto,項目名稱:angularjs-ci3,代碼行數:16,代碼來源:Users.php


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