我有以下格式的时间戳(由于PHP的优点,可以很容易地改变它。)。
2011-02-12 14:44:00
检查此时间戳是否最快的最简单/最简单的方法是什么?
答案 0 :(得分:98)
我想:
date('Ymd') == date('Ymd', strtotime($timestamp))
答案 1 :(得分:7)
if (date('Y-m-d') == date('Y-m-d', strtotime('2011-02-12 14:44:00'))) {
// is today
}
答案 2 :(得分:1)
$offset = date('Z'); //timezone offset in seconds
if (floor(($UNIX_TIMESTAMP + $offset) / 86400) == floor((mktime(0,0,0) + $offset) / 86400)){
echo "today";
}
答案 3 :(得分:1)
这就是我用于此类任务的内容:
/** date comparator restricted by $format.
@param {int/string/Datetime} $timeA
@param {int/string/Datetime} $timeB
@param {string} $format
@returns : 0 if same. 1 if $timeA before $timeB. -1 if after */
function compareDates($timeA,$timeB,$format){
$dateA=$timeA instanceof Datetime?$timeA:(is_numeric($timeA)?(new \Datetime())->setTimestamp($timeA):(new \Datetime("".$timeA)));
$dateB=$timeB instanceof Datetime?$timeB:(is_numeric($timeB)?(new \Datetime())->setTimestamp($timeB):(new \Datetime("".$timeB)));
return $dateA->format($format)==$dateB->format($format)?0:($dateA->getTimestamp()<$dateB->getTimestamp()?1:-1);
}
比较日: $ format ='Y-m-d'。
比较月份: $ format ='Y-m'。
等...
在你的情况下:
if(compareDates("now",'2011-02-12 14:44:00','Y-m-d')===0){
// do stuff
}
答案 4 :(得分:0)
我更喜欢比较时间戳(而不是日期字符串),所以我今天用它来检查。
$dayString = "2011-02-12 14:44:00";
$dayStringSub = substr($dayString, 0, 10);
$isToday = ( strtotime('now') >= strtotime($dayStringSub . " 00:00")
&& strtotime('now') < strtotime($dayStringSub . " 23:59") );
答案 5 :(得分:0)
(date('Ymd') == gmdate('Ymd', $db['time']) ? 'today' : '')
答案 6 :(得分:-1)
if( strtotime( date( 'Y-m-d' , strtotime( '2011-02-12 14:44:00' ) ) ) == strtotime( date( 'Y-m-d' ) ) )
{
//IS TODAY;
}