= 0.9.0)xhprof_enable — 啟動(dòng) xhprof 性能分析器說(shuō)明xhprof_enable(int $flags = 0, array $options = ?): void啟動(dòng) xhprof 進(jìn)行性能分析。 參數(shù)flags分析">

xhprof_enable

(PECL xhprof >= 0.9.0)

xhprof_enable啟動(dòng) xhprof 性能分析器

說(shuō)明

xhprof_enable(int $flags = 0, array $options = ?): void

啟動(dòng) xhprof 進(jìn)行性能分析。

參數(shù)

flags

分析添加額外信息的可選標(biāo)記。 關(guān)于此標(biāo)記的更多信息參見(jiàn) XHprof 常量,例如, XHPROF_FLAGS_MEMORY 可以開(kāi)啟內(nèi)存的分析。

options

array 的可選選項(xiàng),就是通過(guò)傳遞 'ignored_functions' 選項(xiàng)來(lái)忽略性能分析中的某些函數(shù)。

返回值

null

更新日志

版本 說(shuō)明
0.9.2 添加可選的 options 參數(shù)。

范例

示例 #1 xhprof_enable() 范例

<?php
// 1. elapsed time + memory + CPU profiling; and ignore built-in (internal) functions
xhprof_enable(XHPROF_FLAGS_NO_BUILTINS XHPROF_FLAGS_CPU XHPROF_FLAGS_MEMORY);

// 2. elapsed time profiling; ignore call_user_func* during profiling
xhprof_enable(
    
0,
    array(
'ignored_functions' =>  array('call_user_func',
                                        
'call_user_func_array')));
                                       
// 3. elapsed time + memory profiling; ignore call_user_func* during profiling
xhprof_enable(
    
XHPROF_FLAGS_MEMORY,
    array(
'ignored_functions' =>  array('call_user_func',
                                        
'call_user_func_array')));
?>

參見(jiàn)