Heim >Backend-Entwicklung >PHP-Tutorial >php中两日期比较程序代码_PHP教程

php中两日期比较程序代码_PHP教程

WBOY
WBOYOriginal
2016-07-13 10:55:30845Durchsuche

其实在php中比较两个日期有很多方法,我最常用的就是把日期利用strtotime函数把它转换成数字,然后进行加减了,下面看实例。

 代码如下 复制代码

/*
  * 作者:不知道作者是谁
  * 日期:2008-4-13
  * 功能:计算两个日期的时间差
  * 备注:基本上没有修改程序代码,仅将书写规范了下,以及做了注释  // 曼查罗
  */
  
// 定义要比较的两个日期
$Date_1="2008-7-15";
$Date_2="2006-7-14";  

// 将日期化成数组,以便制作时间戳
$Date_List_1=explode("-",$Date_1);  
$Date_List_2=explode("-",$Date_2);  

// 制作时间戳
$d1=mktime(0,0,0,$Date_List_1[1],$Date_List_1[2],$Date_List_1[0]);  
$d2=mktime(0,0,0,$Date_List_2[1],$Date_List_2[2],$Date_List_2[0]);  

// 日期比较
$Days=round(($d1-$d2)/3600/24);  

// 输出结果
echo "$Days days";  
?>

方法二

 代码如下 复制代码

/*
  * 作者:曼查罗
  * 日期:2008-4-13
  * 功能:计算两个日期的时间差
  */

// 用php自带函数strtotime对日期进行时间戳格式化
$date1_ts = strtotime("2008-7-15");
$date2_ts = strtotime("2006-7-14");

// 日期比较
$days=round(($date1_ts-$date2_ts)/3600/24);

// 输出结果
echo "$days days";
?>

功能

说明

实例

                 

checkdate($month, $date, $year)

如果应用的值构成一个有效日期,则该函数返回为真。例如,对于错误日期2005年2月31日,此函数返回为假。

       

在日期用于计算或保存在数据库中之前,可用此函数检查日期并使日期生效。

       

// returns false

       

echo checkdate(2,30,2005) ?

       

"valid" :

       

"invalid";

       

 

       

// returns true

       

echo checkdate(4,6,2010) ? "valid" :

       

"invalid";

       

?>

getdate($ts)

在没有自变量的情况下,该函数以结合数组的方式返回当前日期与时间。数组中的每个元素代表日期/时间值中的一个特定组成部分。可向函数提交可选的时间标签自变量,以获得与时间标签对应的日期/时间值。

       

应用此函数来获得一系列离散的,容易分离的日期/时间值。

       

// returns timestamp for

       

13:15:23

       

7-Jun-2006

       

echo mktime(13,15,23,6,7,2006);

       

?>

mktime($hour,

       

$minute,

       

$second,

       

$month, $day,

       

$year)

此函数的作用与getdate()的作用相反:它由一系列的日期与时间值生成一个UNIX时间标签(GMT时间1970年1月1日到现在消逝的秒数)。不用自变量时,它生成当前时间的UNIX时间标签。

       

用此函数获得即时时间的UNIX时间标签。这种时间标签通常用于许多数据库与程序语言中。

       

// returns timestamp for

       

13:15:23

       

7-Jun-2006

       

echo mktime(13,15,23,6,7,2006);

       

?>

       

date($format, $ts)

此函数将UNIX时间标签格式化成一个可人为阅读的日期字符串。它是PHP日期/时间API中功能最为强大的函数,可用在一系列的修正值中,将整数时间标签转变为所需的字符串格式。

       

 

       

为显示格式化时间或日期时,应用此函数。

       

// format current date

       

// returns "13-Sep-2005 01:16 PM"

       

echo date("d-M-Y h:i A", mktime

       

());

       

?>

       

strtotime ($str)

此函数将可人为阅读的英文日期/时间字符串转换成UNIX时间标签。

       

应用此函数将非标准化的日期/时间字符串转换成标准、兼容的UNIX时间标签。

       

// returns 13-Sep-05

       

echo date("d-M-y",

       

strtotime("today"));

       

 

       

// returns 14-Sep-05

       

echo date("d-M-y",

       

strtotime("tomorrow"));

       

 

       

// returns 16-Sep-05

       

echo date("d-M-y", strtotime("today +3

       

days"));

       

?>

                 

strftime ($format, $ts)

如前面的setlocale()函数定义的那样,此函数将UNIX时间标签格式化成适用于当前环境的日期字符串。

       

应用此函数建立与当前环境兼容的日期字符串。

       

// set locale to France (on

       

Windows)

       

setlocale(LC_TIME, "fra_fra");

       

 

       

// format month/day names

       

// as per locale setting

       

// returns "septembre" and

       

"mardi"

       

echo strftime("Month: %B ");

       

echo strftime("Day: %A ");

       

?>

microtime()

此函数返回GMT时间1970年1月1日到现在所消逝的秒数与微秒数。

       

在基准特定的代码块,准确测量它的执行时间时应用此函数。

       

// get starting value

       

$start = microtime();

       

 

       

// run some code

       

for ($x=0; $x        

???$null = $x * $x;

       

}

       

 

       

// get ending value

       

$end = microtime();

       

 

       

// calculate time taken for

       

code

       

execution

       

echo "Elapsed time: " . ($end -

       

 

       

$start) ." sec";

       

?>

gmmktime

       

($hour,

       

$minute,

       

$second,

       

$month, $day,

       

$year)

此函数由一系列用GMT时间表示的日期与时间值生成一个UNIX时间标签。不用自变量时,它生成一个当前GMT即时时间的UNIX时间标签。

       

用此函数来获得GMT即时时间的UNIX时间标签。

       

// returns timestamp for

       

12:25:23

       

9-Jul-2006

       

echo gmmktime

       

(12,25,23,7,9,2006);

       

?>

                 

gmdate ($format, $ts)

此函数将UNIX时间标签格式化成可人为阅读的日期字符串。此日期字符串以GMT(非当地时间)表示。

       

用GMT表示时间标签时应用此函数。

       

// format current date into GMT

       

// returns "13-Sep-2005 08:32

       

AM"

       

echo gmdate("d-M-Y h:i A",

       

mktime());

       

?>

date_default_

       

timezone_set

       

($tz)and

       

date_default_

       

timezone_get()

此函数此后所有的日期/时间函数调用设定并恢复默认的时区。

       

:此函数仅在PHP 5.1+中有效。

       

此函数是一个方便的捷径,可为以后的时间操作设定时区。

       

// set timezone to UTC

       

date_default_timezone_set

       

('UTC');

       

?>

 

 

 

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/632222.htmlTechArticle其实在php中比较两个日期有很多方法,我最常用的就是把日期利用strtotime函数把它转换成数字,然后进行加减了,下面看实例。 代码如下...
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn