在head.htm中加入,也就是在默認模版中添加“$stime=microtime(true); //獲取程序開始執行的時間”
復制代碼 代碼如下:
<!--<?php
$stime=microtime(true); //獲取程序開始執行的時間
$GuideFid[$fid]=str_replace("<a href='$webdb[www_url]' class='guide_menu'>>首頁</a>","",$GuideFid[$fid]);
$fupId=intval($fupId);
$topMenu[$fupId]='ck';
print <<<EOT
-->
這裡是網頁
再在foot.htm修改如:
復制代碼 代碼如下:
<!--
EOT;
$etime=microtime(true);//獲取程序執行結束的時間
$total=$etime-$stime; //計算差值
echo "<br />[頁面執行時間:{$total} ]秒";
?>