php 获取程序运行时间 怎样用php获取程序执行的时间
人气:0想了解怎样用php获取程序执行的时间的相关内容吗,在本文为您仔细讲解php 获取程序运行时间的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:php,获取,时间,下面大家一起来学习吧。
在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} ]秒";
?>
加载全部内容