入门客AI创业平台(我带你入门,你带我飞行)
博文笔记

PHP时间日期比较

创建时间:2009-10-12 投稿人: 浏览次数:143

相关文章:

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($date1<$date2)
echo "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.

声明:该文观点仅代表作者本人,入门客AI创业平台信息发布平台仅提供信息存储空间服务,如有疑问请联系rumenke@qq.com。