本文實(shí)例講述了php時(shí)間函數(shù)用法。分享給大家供大家參考,具體如下:
php中有unix時(shí)間戳的 相關(guān)操作函數(shù),使用很方便
time() 返回當(dāng)前的 Unix 時(shí)間戳
microtime -- 返回當(dāng)前 Unix 時(shí)間戳和微秒數(shù)
例 1. 用 microtime() 對(duì)腳本的運(yùn)行計(jì)時(shí)
<?php
/**
* Simple function to replicate PHP 5 behaviour
*/
function microtime_float()
{
list($usec, $sec) = explode(" ", microtime());
return ((float)$usec + (float)$sec);
}
$time_start = microtime_float();
// Sleep for a while
usleep(100);
$time_end = microtime_float();
$time = $time_end - $time_start;
echo "Did nothing in $time seconds/n";
?>
mktime()取得一個(gè)日期的 Unix 時(shí)間戳
int mktime ( [int hour [, int minute [, int second [, int month [, int day [, int year [, int is_dst]]]]]]] )
參數(shù)可以從右向左省略,任何省略的參數(shù)會(huì)被設(shè)置成本地日期和時(shí)間的當(dāng)前值
date()格式化一個(gè)本地時(shí)間/日期
string date ( string format [, int timestamp] )
提示: 自 PHP 5.1 起在 $_SERVER['REQUEST_TIME'] 中保存了發(fā)起該請(qǐng)求時(shí)刻的時(shí)間戳。
strtotime -- 將任何英文文本的日期時(shí)間描述解析為 Unix 時(shí)間戳
echo strtotime("+1 day"), "/n";
echo strtotime("+1 week"), "/n";
例2. 某個(gè)時(shí)間的后一天,后一月
strtotime("+1 day ".$day);
strtotime("2008-01-31 +1 month");
strtotime($day." +1 day");
以上形式都正確
希望本文所述對(duì)大家PHP程序設(shè)計(jì)有所幫助。