太虚幻境
(虫子)
金牌会员
 
幻境中的一只虫
UID 78355
精华
0
积分 2097
帖子 257
金钱 2091 喜悦币
威望 0
人脉 6
阅读权限 70
注册 2006-8-15
状态 离线
|
[推荐阅读] PHP如何生成一个文件格式为UTF-8编码的文件?
<?php
function getmicrotime(){
list($usec, $sec) = explode(" ",microtime());
return ((float)$usec + (float)$sec);
}
$time_start = getmicrotime();
//你的代码
$time_end = getmicrotime();
$time = $time_end - $time_start;
echo "Did nothing in $time seconds";//输出运行总时间
?>
|
|