如何使用codeigniter从数据库中获取明天的日子

时间:2014-08-14 10:15:51

标签: php codeigniter

我在codeigniter中遇到压缩日期问题。 今天的例子是2014-08-14,但我想从数据库中选择date =明天的数据。

有人可以帮助我吗?

3 个答案:

答案 0 :(得分:0)

$tomorrow_time = strtotime("+1 day");
$tomorrow_date = date('Y-m-d', $tomorrow_time);

现在在数据库中比较这个日期;

答案 1 :(得分:0)

 $datetime = new DateTime('tomorrow');
 echo $datetime->format('Y-m-d H:i:s');

答案 2 :(得分:0)

在sql中

where date = DATE_ADD(NOW(),INTERVAL 1DAY)