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