«
PHP日期时间函数的高级应用技巧

时间:2008-5-31    作者:Deri    分类: 分享


   <p>  详细讲解PHP的日期时间函数date()中介绍了PHP日期时间函数的简单用法,这类将介绍更多的函数来丰富我们的应用。</p><p>  checkdate($month,$date,$year)</p><p>  如果应用的值构成一个有效日期,则该函数返回为真。例如,对于错误日期2005年2月31日,此函数返回为假。</p><p>  在日期用于计算或保存在数据库中之前,可用此函数检查日期并使日期生效。</p><code><?php<br />// returns false<br />echo checkdate(2,30,2005) ? "valid" : "invalid";<br />// returns true<br />echo checkdate(4,6,2010) ? "valid" : "invalid";<br />?></code></p><p>  getdate($ts)</p><p>  在没有自变量的情况下,该函数以结合数组的方式返回当前日期与时间。数组中的每个元素代表日期/时间值中的一个特定组成部分。可向函数提交可选的时间标签自变量,以获得与时间标签对应的日期/时间值。</p><p>  应用此函数来获得一系列离散的,容易分离的日期/时间值。</p><code><?php<br />// get date as associative array<br />$arr = getdate();<br />echo "Date is " . $arr['mday'] . " " . $arr['weekday'] . " " . $arr['year'];<br />echo "Time is " . $arr['hours'] . ":" . $arr['minutes'];<br />?></code></p><p>  mktime($hour, $minute, $second, $month, $day, $year)</p><p>  此函数的作用与getdate()的作用相反:它由一系列的日期与时间值生成一个UNIX时间标签(GMT时间1970年1月1日到现在消逝的秒数)。不用自变量时,它生成当前时间的UNIX时间标签。</p><p>  用此函数获得即时时间的UNIX时间标签。这种时间标签通常用于许多数据库与程序语言中。</p>
<p> </p>

   <code><?php<br />// returns timestamp for 13:15:23 7-Jun-2006<br />echo mktime(13,15,23,6,7,2006);<br />?></code></p><p>  date($format, $ts)</p><p>  此函数将UNIX时间标签格式化成一个可人为阅读的日期字符串。它是PHP日期/时间API中功能最为强大的函数,可用在一系列的修正值中,将整数时间标签转变为所需的字符串格式。</p><p>  为显示格式化时间或日期时,应用此函数。</p><code><?php<br />// format current date<br />// returns "13-Sep-2005 01:16 PM"<br />echo date("d-M-Y h:i A", mktime());<br />?></code></p><p>  strtotime($str)</p><p>  此函数将可人为阅读的英文日期/时间字符串转换成UNIX时间标签。</p><p>  应用此函数将非标准化的日期/时间字符串转换成标准、兼容的UNIX时间标签。</p><code><?php<br />// returns 13-Sep-05<br />echo date("d-M-y", strtotime("today"));<br />// returns 14-Sep-05<br />echo date("d-M-y", strtotime("tomorrow"));<br />// returns 16-Sep-05<br />echo date("d-M-y", strtotime("today +3 days"));<br />?></code></p><p>  strftime($format,$ts)</p><p>  如前面的setlocale()函数定义的那样,此函数将UNIX时间标签格式化成适用于当前环境的日期字符串。</p><p>  应用此函数建立与当前环境兼容的日期字符串。</p><code><?php<br />// set locale to France (on Windows)<br />setlocale(LC_TIME, "fra_fra");<br />// format month/day names<br />// as per locale setting<br />// returns "septembre" and "mardi"<br />echo strftime("Month: %B ");<br />echo strftime("Day: %A ");<br />?></code></p>
 <p> </p>

   <p>  microtime()</p><p>  如前面的setlocale()函数定义的那样,此函数将UNIX时间标签格式化成适用于当前环境的日期字符串。</p><p>  应用此函数建立与当前环境兼容的日期字符串。</p><code><?php<br />// get starting value<br />$start = microtime();<br />// run some code<br />for ($x=0; $x<1000; $x++) {<br />$null = $x * $x;<br />}<br />// get ending value<br />$end = microtime();<br />// calculate time taken for code execution<br />echo "Elapsed time: " . ($end - $start) ." sec";<br />?></code></p><p>  gmmktime($hour, $minute, $second, $month, $day, $year)</p><p>  此函数由一系列用GMT时间表示的日期与时间值生成一个UNIX时间标签。不用自变量时,它生成一个当前GMT即时时间的UNIX时间标签。</p><p>  用此函数来获得GMT即时时间的UNIX时间标签。</p><code><?php<br />// returns timestamp for 12:25:23 9-Jul-2006<br />echo gmmktime(12,25,23,7,9,2006);<br />?></code></p><p>  gmdate($format, $ts)</p><p>  此函数将UNIX时间标签格式化成可人为阅读的日期字符串。此日期字符串以GMT(非当地时间)表示。</p><p>  用GMT表示时间标签时应用此函数。</p><code><?php<br />// format current date into GMT<br />// returns "13-Sep-2005 08:32 AM"<br />echo gmdate("d-M-Y h:i A", mktime());<br />?></code></p><p>  date_default_timezone_set($tz)、date_default_timezone_get()</p><p>  此函数此后所有的日期/时间函数调用设定并恢复默认的时区。</p><p>  注:此函数仅在PHP 5.1+中有效。</p><p>  此函数是一个方便的捷径,可为以后的时间操作设定时区。</p></p><code><?php<br />// set timezone to UTC<br />date_default_timezone_set('UTC');<br />?></code></p></p>