我在我正在使用的网站中使用Ion Auth库作为身份验证系统。它没有任何问题,但从昨天起我就收到了这个错误:
PHP Fatal error: Call to undefined function now() in /home/carlo/public_html/website/application/models/ion_auth_model.php on line 996
该行中的代码是:
$this->db->update($this->tables['users'], array('last_login' => now()), array('id' => $id));
我读到now()是一个mysql函数,在php中你应该使用date(),但我觉得奇怪的是在库里有一个不存在的函数。 知道这里发生了什么吗?
答案 0 :(得分:7)
使用Codeigniter日期助手,它允许你使用now()。
$this->load->helper('date');