microtime 是一個函式,功能是返回當前 UNIX 時間戳和微秒數。
基本介紹
- 中文名:microtime
- microtime :返回當前 UNIX 時間戳和微秒數
- 函式原型:string microtime ( void )
- 字元串:都是以秒為單位返回的
函式原型,詳細說明,
函式原型
(PHP 3, PHP 4 )
microtime -- 返回當前 UNIX 時間戳和微秒數
詳細說明
string microtime ( void )
返回格式為“msec sec”的字元串,其中 sec 是當前的 Unix 時間戳,msec 是微秒部分。本函式僅在支持 gettimeofday() 系統調用的作業系統下可用。
字元串的兩部分都是以秒為單位返回的。
例子
<?php
function getmicrotime(){
list($usec, $sec) = explode(" ",microtime());
return ((float)$usec + (float)$sec);
}
$time_start = getmicrotime();
for ($i=0; $i < 1000; $i++){
//do nothing, 1000 times
}
$time_end = getmicrotime();
$time = $time_end - $time_start;
echo "Did nothing in $time seconds";
?>