gpt4 book ai didi

php - 在 CodeIgniter 中比较日期

转载 作者:行者123 更新时间:2023-11-28 23:43:14 25 4
gpt4 key购买 nike

我想比较我的 CodeIgniter 模型中的日期。在我的数据库中,日期存储为 MM/DD/YYYY。比较日期取自使用 MM/DD/YYYY 格式的日期选择器。

但是我的模型查询不起作用。这里不进行日期比较。

比较的格式是什么?

型号

   $this->db->where('order_date >=', $first_date);
$this->db->where('order_date <=', $second_date);

最佳答案

简单地使用 str_to_date 函数,如 as

$this->db->where("order_date BETWEEN str_to_date('$first_date','%m/%d/%Y') AND str_to_date('$second_date','%m/%d/%Y')");

关于php - 在 CodeIgniter 中比较日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34013647/

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