调用未定义函数 now()
我正在使用 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(),但这对我来说似乎很奇怪库中有一个不存在的函数。 知道这里发生了什么吗?
I'm using the Ion Auth library for the authentication system in a website I'm working on. It worked without any problem, but since yesterday I'm getting this error:
PHP Fatal error: Call to undefined function now() in /home/carlo/public_html/website/application/models/ion_auth_model.php on line 996
The code in that line is this:
$this->db->update($this->tables['users'], array('last_login' => now()), array('id' => $id));
I read that now() is a mysql function and in php you should use date(), but it seems strange to me that in the library there is a non existing function.
Any idea what's happening here?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 Codeigniters date hepler,它将允许您使用 now()。
Use Codeigniters date hepler, it will allow you to use now().