今天的日期是 2013 年 4 月 25 日。是的,服务器上的时间是正确的,并且
var_dump
正在mdate('%Y-%m-%d', strtotime(now()))
返回2013-04-25
。MySQL 表列
date
是date
类型/格式。代码点火器 2.1.3
我的搜索条件字符串是
"test"
.
$criteria = array(
'field1' => 'test',
'field2' => 'test',
'field3' => 'test'
);
我的数据库中包含“test”一词的四个项目的日期如下:
date
2013-04-02
2013-04-05
2013-05-07
2013-05-21
在我的模型中,当我希望我的搜索结果(搜索 =“测试”)无论日期如何都返回所有内容时,这就是它的样子......
$this->db->start_cache();
$this->db->or_like($criteria);
$this->db->order_by('date', 'desc');
$this->db->stop_cache();
$query['results'] = $this->db->get('table', $limit, $offset)->result_array();
$this->db->flush_cache();
return $query;
按预期输出:
2013-05-21
2013-05-07
2013-04-05
2013-04-02
以上工作正常,所有四个项目均已退回。
但是,当使用它并且只where()
添加 a 以将结果改进到今天甚至更大时......
$this->db->start_cache();
$this->db->or_like($criteria); // <-- remove this line and it works
$this->db->where('date >=', mdate('%Y-%m-%d', strtotime(now()))); // <-- only new line
$this->db->order_by('date', 'asc');
$this->db->stop_cache();
$query['results'] = $this->db->get('table', $limit, $offset)->result_array();
$this->db->flush_cache();
return $query;
意外输出:
2013-04-02 // <-- why this one??? today is 4/25
2013-05-07
2013-05-21
它应该只显示今天和未来的结果。 那么为什么今天是 2013 年 4 月 25 日的项目日期是 2013 年 4 月 2 日? (这就像它部分工作,因为它仍然忽略带有 . 的项目2013-04-05
。)
- 为什么会这样?
- 如何解决这个问题?
编辑:
我试过颠倒顺序:
$this->db->where('date >=', mdate('%Y-%m-%d', strtotime(now())));
$this->db->or_like($criteria);
和链接:
$this->db->or_like($criteria)->where('date >=', mdate('%Y-%m-%d', strtotime(now())));
和这个:
$this->db->or_like($criteria);
$this->db->where('DATE(date) >= DATE(NOW())');
结果是一样的。