首頁 >php教程 >php手册 >PHP时间日期比较

PHP时间日期比较

WBOY
WBOY原創
2016-06-06 19:56:562381瀏覽

PHP使用DateTime类做时间日期到字符串转换 javascript中Date和string的互转 若要使用php来比较日期,最好用DateTime::diff 但是这个是5.3才支持的,如果没有这样的环境,可以使用、来比较 如下例子,会输出right $date1=strtotime('2009-8-9 20:00'); $date2

PHP使用DateTime类做时间日期到字符串转换

javascript中Date和string的互转

 

若要使用php来比较日期,最好用DateTime::diff

但是这个是5.3才支持的,如果没有这样的环境,可以使用来比较

如下例子,会输出right

$date1=strtotime('2009-8-9 20:00');
$date2=strtotime('2009-9-9 1:00');
if($date1echo 'right';
else
echo 'wrong';

 

注:DateTime::diff

DateTime::diff

(PHP 5 >= 5.3.0)

DateTime::diff — Returns the difference between two DateTime objects

Description

public DateInterval DateTime::diff ( DateTime $datetime [, bool $absolute ] )

Returns the difference between two DateTime objects.

Parameters
datetime

The date to compare to.

 

absolute

Whether to return absolute difference. Defaults to FALSE.

Return Values

The difference between two dates.

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn