當前位置: 首頁>>代碼示例>>PHP>>正文


PHP XHProfRuns_Default::load_profile方法代碼示例

本文整理匯總了PHP中XHProfRuns_Default::load_profile方法的典型用法代碼示例。如果您正苦於以下問題:PHP XHProfRuns_Default::load_profile方法的具體用法?PHP XHProfRuns_Default::load_profile怎麽用?PHP XHProfRuns_Default::load_profile使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在XHProfRuns_Default的用法示例。


在下文中一共展示了XHProfRuns_Default::load_profile方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: get_summary

function get_summary($file_path, $probe = null)
{
    $xhprof_data = XHProfRuns_Default::load_profile($file_path);
    $xhprof_data = xhprof_compute_flat_info($xhprof_data, $totals);
    $probe_count = 0;
    if ($probe != null && isset($xhprof_data[$probe])) {
        $probe_count = $xhprof_data[$probe]['ct'];
    }
    return array('pmu' => isset($totals['pmu']) ? $totals['pmu'] : '', 'mu' => isset($totals['mu']) ? $totals['mu'] : '', 'wt' => $totals['wt'], 'cpu' => $totals['cpu'], 'nbr' => $probe_count);
}
開發者ID:shourya07,項目名稱:zperfmon,代碼行數:10,代碼來源:prof_summary.php

示例2: get_top_functions

function get_top_functions($profile, $metric_list, $how_many)
{
    global $metric;
    $tots = null;
    $profile = XHProfRuns_Default::load_profile($profile);
    $profile = xhprof_compute_flat_info($profile, $tots);
    $result = array();
    foreach ($metric_list as $metric => $blurb) {
        try {
            $metric_array = array_map("filter_metric", $profile);
            uasort($metric_array, 'compare');
            $top_x = array_slice($metric_array, 0, $how_many);
            $metric_total = array_sum($metric_array);
            $metric_sub_total = array_sum($top_x);
            $top_x["*others*"] = $metric_total - $metric_sub_total;
            $result[$blurb] = array_map(null, array_keys($top_x), array_values($top_x));
        } catch (Exception $e) {
            error_log("Processing metric {$m} failed");
        }
    }
    return $result;
}
開發者ID:shourya07,項目名稱:zperfmon,代碼行數:22,代碼來源:profilepie.inc.php

示例3: slow_page

function slow_page($dir_path, $profile_name, $max_time, &$flat_profile)
{
    // XXX: xhprof depends on this global for doing entry counts
    global $display_calls;
    $display_calls = true;
    $profile = XHProfRuns_Default::load_profile("{$dir_path}/{$profile_name}");
    $dummy = null;
    $flat_profile = xhprof_compute_flat_info($profile, $dummy);
    return $flat_profile["main()"]["wt"];
}
開發者ID:shourya07,項目名稱:zperfmon,代碼行數:10,代碼來源:slowpage.php

示例4: combine_files

function combine_files($files, $game_name, $pattern, $output)
{
    $combined = array();
    $matches = null;
    #$pattern = "/[0-9]+\.(.*)\.extract/";
    foreach ($files as $file) {
        if (preg_match($pattern, basename($file), $matches)) {
            $key = $matches[1];
            $combined[$key] = XHProfRuns_Default::load_profile($file);
        }
    }
    file_put_contents($output, serialize($combined));
}
開發者ID:shourya07,項目名稱:zperfmon,代碼行數:13,代碼來源:aggregate.php

示例5: to_array

function to_array($filename)
{
    if (!file_exists($filename)) {
        return null;
    }
    $array = null;
    try {
        $array = XHProfRuns_Default::load_profile($filename);
    } catch (Exception $ex) {
        var_dump($ex->getTrace());
    }
    return $array;
}
開發者ID:shourya07,項目名稱:zperfmon,代碼行數:13,代碼來源:get_top5_functions.php


注:本文中的XHProfRuns_Default::load_profile方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。