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

PHP时间日期比较

WBOY
WBOY원래의
2016-06-06 19:56:562382검색

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으로 문의하세요.