XHProf

WBOY
WBOYOriginal
2016-06-06 19:34:431399Durchsuche

XHProf调用 无 //测试开始配置代码 xhprof_enable(XHPROF_FLAGS_CPU + XHPROF_FLAGS_MEMORY); //测试的代码块开始 for ($i=1;$i=100;$i++) { echo $i.'br/'; } //测试的代码块结束 //结束代码块开始 $xhprof_data = xhprof_disable(); include_once ("/xhprof

XHProf  调用
//测试开始配置代码 
xhprof_enable(XHPROF_FLAGS_CPU + XHPROF_FLAGS_MEMORY); 
 
 
//测试的代码块开始 
for ($i=1;$i<=100;$i++) 
{ 
    echo $i.'<br/>'; 
} 
 
//测试的代码块结束 
 
//结束代码块开始 
$xhprof_data = xhprof_disable(); 
include_once ("/xhprof_lib/utils/xhprof_lib.php"); 
include_once ("/xhprof_lib/utils/xhprof_runs.php"); 
 
$objXhprofRun = new XHProfRuns_Default(); 
 
$run_id = $objXhprofRun->save_run($xhprof_data, "xhprof"); 
 
echo "<a href='/xhprof_html/index.php?run=".$run_id."&source=xhprof' target='_blank'>view</a>"; 
 
//结束代码块结尾 
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn