久久国产成人av_抖音国产毛片_a片网站免费观看_A片无码播放手机在线观看,色五月在线观看,亚洲精品m在线观看,女人自慰的免费网址,悠悠在线观看精品视频,一级日本片免费的,亚洲精品久,国产精品成人久久久久久久

分享

php獲取程序執(zhí)行時(shí)間的代碼

 鄉(xiāng)間小路有風(fēng)景 2013-07-21

例1,,
在head.htm中加入,,即在默認(rèn)模版中添加:“$stime=microtime(true); //獲取程序開始執(zhí)行的時(shí)間”,。
代碼如下所示:
 

復(fù)制代碼代碼示例:

<!--<?php
$stime=microtime(true); //程序開始執(zhí)行的時(shí)間
$GuideFid[$fid]=str_replace()("<a href='$webdb[www_url]' class='guide_menu'>>首頁</a>","",$GuideFid[$fid]);
$fupId=intval($fupId);
$topMenu[$fupId]='ck';
print <<<EOT
-->

//這里是網(wǎng)頁
//再在foot.htm修改,,如下所示:
<!--
EOT;
$etime=microtime(true);//獲取程序執(zhí)行結(jié)束的時(shí)間
$total=$etime-$stime; //計(jì)算差值
echo "<br />[頁面執(zhí)行時(shí)間:{$total} ]秒";
?>

例2,
 

復(fù)制代碼代碼示例:
<?
$pagestartime=microtime();
?>
<!--網(wǎng)頁內(nèi)容 start-->
網(wǎng)頁內(nèi)容
...
...
<!--網(wǎng)頁內(nèi)容 end-->
<?
$pageendtime = microtime();
$starttime = explode()(" ",$pagestartime);
$endtime = explode(" ",$pageendtime);
$totaltime = $endtime[0]-$starttime[0]+$endtime[1]-$starttime[1];
$timecost = sprintf()("%s",$totaltime);
echo "頁面運(yùn)行時(shí)間: $timecost 秒";
//by www.
?>

例3,,
計(jì)算頁面執(zhí)行時(shí)間
在php網(wǎng)頁的開頭加入:
 

復(fù)制代碼代碼示例:
<?
//計(jì)算頁面執(zhí)行時(shí)間
$time_start = getmicrotime();
function getmicrotime()
{
list($usec, $sec) = explode(" ",microtime());
return ((float)$usec + (float)$sec);
}
?>
 

然后,,在頁面結(jié)尾加入:
 

復(fù)制代碼代碼示例:
<?
$time_end = getmicrotime();
printf ("[頁面執(zhí)行時(shí)間: %.2f毫秒]\n\n",($time_end - $time_start)*1000);
//統(tǒng)計(jì)出當(dāng)前頁的執(zhí)行時(shí)間
?>

    本站是提供個(gè)人知識(shí)管理的網(wǎng)絡(luò)存儲(chǔ)空間,所有內(nèi)容均由用戶發(fā)布,,不代表本站觀點(diǎn),。請(qǐng)注意甄別內(nèi)容中的聯(lián)系方式、誘導(dǎo)購買等信息,,謹(jǐn)防詐騙,。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊一鍵舉報(bào)。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評(píng)論

    發(fā)表

    請(qǐng)遵守用戶 評(píng)論公約

    類似文章 更多