当前位置: 网学 > 编程文档 > PHP > 正文

全局记录程序片段的运行时间 正确找到程序逻辑耗时多的断点

来源:Http://myeducs.cn 联系QQ:点击这里给我发消息 作者: 用户投稿 来源: 网络 发布时间: 13/06/21

网学网为需要PHP的朋友们搜集整理了全局记录程序片段的运行时间 正确找到程序逻辑耗时多的断点相关资料,希望对各位网友有所帮助!

复制代码 代码如下:
// 定义全局变量 记录时间
全局记录程序片段的运行时间 正确找到程序逻辑耗时多的断点_网学
浏览:
版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved
湘ICP备09003080号
timer_id = 0;
// 函数设置全局变量 记录各个断点的运行所需时间
function makeTimer( $notes, $onOff=FALSE )
{
if( $onOff )
{
global 全局记录程序片段的运行时间 正确找到程序逻辑耗时多的断点_网学
浏览:
版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved
湘ICP备09003080号
timer_id;
$GLOBALS[''timer''][ 全局记录程序片段的运行时间 正确找到程序逻辑耗时多的断点_网学
浏览:
版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved
湘ICP备09003080号
timer_id][0] = microtime(TRUE);
$GLOBALS[''timer''][ 全局记录程序片段的运行时间 正确找到程序逻辑耗时多的断点_网学
浏览:
版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved
湘ICP备09003080号
timer_id] = $notes;
全局记录程序片段的运行时间 正确找到程序逻辑耗时多的断点_网学
浏览:
版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved
湘ICP备09003080号
timer_id++;
}
}
// 把全局运行时间情况输出
function traceTimer()
{
$timer_str = '''';
$G_timer = count($GLOBALS[''timer''])-1;
if( $G_timer>0 )
{
for( $i=0;$i<$G_timer;$i++ )
{
$dif_time = number_format( ($GLOBALS[''timer''][$i+1][0] - $GLOBALS[''timer''][$i][0]), 3 );
$timer_str .= ''dif: ''.$dif_time.'' ''.$GLOBALS[''timer''][$i]."\n";
}
$dif_time = number_format( (microtime(TRUE) - $GLOBALS[''timer''][$G_timer][0]), 3 );
$timer_str .= ''dif: ''.$dif_time.'' ''.$GLOBALS[''timer''][$G_timer]."\n";
}
return $timer_str;
}
使用方法:
// 开始时间
makeTimer( '' LINE:''.__LINE__ );
$imgstrpos = strpos($str, ''<img''.$imgstr);
makeTimer( '' LINE:''.__LINE__ );
$str_p = substr($str_noimg, 0, $imgstrpos);
makeTimer( '' LINE:''.__LINE__ );
$str_n = substr($str_noimg, $imgstrpos, strlen($str_noimg));
makeTimer( '' LINE:''.__LINE__ );
$pst_exc_imgs = $str_p.''<img ''.$imgstr.''>''.$str_n." ";
makeTimer( '' LINE:''.__LINE__ );
// 记录到日志中
error_log( traceTimer(), 3, ''/tmp/''.basename(__FILE__).''.log'' );
// 或者直接输出
echo traceTimer();

at 2010-05-14 09:20
  • 上一篇资讯: Discuz Uchome ajaxpost小技巧
  • 网学推荐

    免费论文

    原创论文

    浏览:
    设为首页 | 加入收藏 | 论文首页 | 论文专题 | 设计下载 | 网学软件 | 论文模板 | 论文资源 | 程序设计 | 关于网学 | 站内搜索 | 网学留言 | 友情链接 | 资料中心
    版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
    Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved
    湘ICP备09003080号