当前位置:首页 > PHP教程 > php日期 > 列表

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

发布:smiling 来源: PHP粉丝网  添加日期:2014-01-19 00:32:35 浏览: 评论:0 

在php中如果我们要获取毫秒就必须通过microtime()再进行转换,下面我来给各位朋友举几个实例,希望对大家会有所帮助。

问题不怕弱智…啥都记,代码如下:

  1. function getmicrotime()   
  2. {   
  3.     list($usec$sec) = explode(" ",microtime());   
  4.     return ((float)$usec + (float)$sec);   

其实就是处理了一下microtime()这个函数,microtime()这个函数的返回值是这种形式:0.06261400 1303715872

空格后面为当前的时间戳,空格前面是当前的精确时间,例,计算页面执行时间函数,代码如下:

  1. <?php 
  2. /** 
  3. * Simple function to replicate PHP 5 behaviour 
  4. */ 
  5. function microtime_float() 
  6.     list($usec$sec) = explode(" ", microtime()); 
  7.     return ((float)$usec + (float)$sec); 
  8. $time_start = microtime_float(); 
  9. // Sleep for a while 
  10. usleep(100); 
  11. $time_end = microtime_float(); 
  12. $time = $time_end - $time_start
  13. echo "Did nothing in $time secondsn"
  14. ?> 

Tags: PHP 获得 毫秒 时间

分享到: