代码点火器数据库区分大小写



登录系统时需要考虑区分大小写。 但密码不考虑大小写。

$this->db->select('user.*,userprofile.*,user.id as uid');
$this->db->from('user');
$this->db->join('userprofile', 'userprofile.id = user.id');
$this->db->like('email', $udata['email']);
$this->db->like('password', $udata["password"]);
$query = $this->db->get();

以上是我的查询。如何更改它以使其区分大小写?

一种可能的方法可能是

$this->db
->select('user.*,userprofile.*,user.id as uid')
->from('user')
->join('userprofile', 'userprofile.id = user.id')
->where('email', $udata['email'])
->where('BINARY password =', $this->db->escape($udata["password"]), false)
->get();

欲了解更多信息,请查看此处

我更改了变量名称以分别获取两者,并在"where"中使用了 LIKE。

我改变这个:

$this->db->like('password', $udata["password"]);

$this->db->where('password LIKE binary', $password);

相关内容

  • 没有找到相关文章

最新更新