在php中比较两个日期的正确方法是什么?
作者:互联网
我需要将数据库中的日期与当前日期进行比较.这是我的代码,雄辩地说:
$posts = Post::where('date', '=', date('Y-m-d'))->get();
我只想检索今天的帖子.
知道“日期”字段的类型为“日期”,我该如何进行这项工作?
我尝试使用’format’方法将date(‘Ym-d’)转换为字符串,但是看来date(‘Ym-d’)某种程度上返回了布尔值,因此,方法’format’无法适用于它.
解决方法:
我用它来处理我的数据库日期
//Get the database date, and format it
$database_date = date_format($database_date, 'Y-m-d');
//Get today date or another date of you choice
$today_date = new DateTime();
//Format it
$today_date = date_format($today_date, 'Y-m-d');
// Use strtotime() to compare the dates or DateTime::diff for more cleaner IMO
$difference = strtotime($today_date) - strtotime($database_date);
标签:date-comparison,datetime,php 来源: https://codeday.me/bug/20191027/1946758.html