调用未定义函数 now()

发布于 2024-12-13 14:03:17 字数 477 浏览 0 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一杯敬自由 2024-12-20 14:03:17

使用 Codeigniters date hepler,它将允许您使用 now()。

$this->load->helper('date');

Use Codeigniters date hepler, it will allow you to use now().

$this->load->helper('date');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文