码迷,mamicode.com
首页 > 其他好文 > 详细

xhprof代码添加分析性能

时间:2017-05-03 17:27:52      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:get   log   lib   htm   test   html   user   span   php   

<?php
xhprof_enable(
    XHPROF_FLAGS_MEMORY,
    [
        ‘ignored_functions‘    => [
            //‘call_user_func‘,
            //‘call_user_func_array‘
        ]
    ]
);


//逻辑代码
//......

$xhprofData = xhprof_disable();// $xhprofData是数组形式的分析结果

require ‘../xhprof_lib/utils/xhprof_lib.php‘;
require ‘../xhprof_lib/utils/xhprof_runs.php‘;

$xhprofRuns = new XHProfRuns_Default();
$runId = $xhprofRuns->save_run($xhprofData, ‘xhprof_test‘);

$profile_url = ‘http://10.10.20.3/xhprof_html/index.php?run=‘ . $runId . ‘&source=xhprof_test‘;
echo ‘<a href="‘.$profile_url.‘" target="_blank">性能链接</a>‘;

 

xhprof代码添加分析性能

标签:get   log   lib   htm   test   html   user   span   php   

原文地址:http://www.cnblogs.com/dongruiha/p/6802163.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!