欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

PHP获得毫秒的时间microtime()用法_PHP教程

程序员文章站 2022-04-07 12:39:56
...
在php中如果我们要获取毫秒就必须通过microtime()再进行转换,下面我来给各位朋友举几个实例,希望对大家会有所帮助。

问题不怕弱智…啥都记

代码如下 复制代码

function getmicrotime()
{
list($usec, $sec) = explode(" ",microtime());
return ((float)$usec + (float)$sec);
}

其实就是处理了一下microtime()这个函数。

microtime()这个函数的返回值是这种形式:

0.06261400 1303715872

空格后面为当前的时间戳,空格前面是当前的精确时间

例,计算页面执行时间函数

代码如下 复制代码

/**
* 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 secondsn";
?>

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/633053.htmlTechArticle在php中如果我们要获取毫秒就必须通过microtime()再进行转换,下面我来给各位朋友举几个实例,希望对大家会有所帮助。 问题不怕弱智啥都...