웹프로그램
PHP 마이크로타임 microtime
세이박스
2008. 10. 18. 10:06
반응형
function getmicrotime()
{
list($usec, $sec) = explode(" ", microtime());
return ((float)$usec + (float)$sec);
}
$time_start = getmicrotime();
반응형