gpt4 book ai didi

php - 如何传递 DateCreated > DATE_SUB( NOW( ) , INTERVAL 10 DAY );健康)状况?

转载 作者:搜寻专家 更新时间:2023-10-30 20:09:17 25 4
gpt4 key购买 nike

我是 codeigniter 的新手,我想通过传递许多条件来选择用户的详细信息。我通过了一些条件,例如:

 $this->db->where ( 'userprofile.Disability', $Disability);
$this->db->where('userprofile.LivingCity', $LivingCity);

同样,我想传递这个where条件:

where DateCreated > DATE_SUB( NOW( ) , INTERVAL 10 DAY );//how to write in code igniter format?

如何以代码启动器格式编写 ^?

例如:

`$this->db->where('userprofile.DateCreated>', DATE_SUB( NOW( ) , INTERVAL 10 DAY);`// how to write this?

那个^怎么写?

我想通过这个条件来选择在 10 天之前插入值的人,我的选择表是:

$this->db->select('*');
$this->db->from('Userprofile');

最佳答案

您应该在 codeignitor 中编写自定义 where 条件。

$where = "DateCreated > DATE_SUB( NOW( ) , INTERVAL 10 DAY )";

$this->db->where($where);

checkout CI 的事件记录类:https://www.codeigniter.com/userguide2/database/active_record.html

关于php - 如何传递 DateCreated > DATE_SUB( NOW( ) , INTERVAL 10 DAY );健康)状况?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28936262/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com