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


PHP auth::encrypt方法代码示例

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


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

示例1: save

 public function save()
 {
     $id = $this->input->post('id');
     $data['email'] = $this->input->post('email');
     $password = $this->input->post('password');
     if (!empty($password)) {
         $this->load->library('auth');
         $data['password'] = auth::encrypt($password);
     }
     $this->db->update('account', $data, "id = '{$id}'");
     $this->flash->success('<strong>恭喜,</strong> 管理员信息修改成功!');
     redirect('admin/personal');
 }
开发者ID:lansn,项目名称:ci,代码行数:13,代码来源:Personal.php

示例2: auth

 public function auth()
 {
     $email = $this->input->post('email', TRUE);
     $password = $this->input->post('password', TRUE);
     if (!$email) {
         $this->flash->warning('请输入邮箱!');
         redirect('admin/login');
     }
     if (!$password) {
         $this->flash->warning('请输入密码!');
         redirect('admin/login');
     }
     $this->load->library('auth');
     $password = auth::encrypt($password);
     $count = $this->db->where('email', $email)->where('password', $password)->get('account')->num_rows();
     if ($count > 0) {
         $this->session->set_userdata('sa_email', $email);
         redirect('admin/welcome');
     } else {
         $this->flash->error('邮箱或密码错误!');
         redirect('admin/login');
     }
 }
开发者ID:lansn,项目名称:ci,代码行数:23,代码来源:Login.php


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