本文整理汇总了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');
}
示例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');
}
}