xhprof_disableStops xhprof profiler Description
arraynull xhprof_disable()
Stops the profiler, and returns xhprof data from the run. ParametersThis function has no parameters. Return Values
An array of xhprof data, from the run.
Returns ExamplesExample #1 xhprof_disable example The 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
)
)
|