Zend Db Table delete() 无法正常工作

发布于 2024-10-04 13:46:50 字数 384 浏览 9 评论 0原文

我有以下代码:

$time = 60 * 60 * 24 * 3;

$usersTable = new Application_Model_Db_Users();

$where = 'active = false AND registration_time < ' . time() - $time;
$usersTable->delete($where);

但是当它运行时,它会删除表中的所有行,而当我运行时,

DELETE FROM users
WHERE active = false
AND registration_time < 1290500000

只会删除符合条件的行。问题是什么?

I have the following code:

$time = 60 * 60 * 24 * 3;

$usersTable = new Application_Model_Db_Users();

$where = 'active = false AND registration_time < ' . time() - $time;
$usersTable->delete($where);

But when it is run it deletes all the rows in the table, where as when I run

DELETE FROM users
WHERE active = false
AND registration_time < 1290500000

Only the ones that match the criteria are deleted. What is the problem?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

对岸观火 2024-10-11 13:46:50

您只需要用括号将其括起来,以便 time() - $time 正确计算。

$where = 'active = false AND registration_time < ' . (time() - $time);

You just need to wrap it with parenthesis, so that time() - $time evaluates properly.

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