xhprof_disableStops xhprof profiler Description
array xhprof_disable
( void
)
Stops the profiler, and returns xhprof data from the run. ParametersThis function has no parameters. Return ValuesAn array of xhprof data, from the run. ExamplesExample #1 xhprof_disable example
<?phpThe above example will output something similar to:
Array
(
[main()==>strlen] => Array
(
[ct] => 1
[wt] => 279
)
[main()==>xhprof_disable] => Array
(
[ct] => 1
[wt] => 9
)
[main()] => Array
(
[ct] => 1
[wt] => 610
)
)
|