xhprof_disableStops xhprof profiler Beschreibung
array xhprof_disable
( void
)
Stops the profiler, and returns xhprof data from the run. Parameter-ListeDiese Funktion hat keine Parameter. RückgabewerteAn array of xhprof data, from the run. BeispieleBeispiel #1 xhprof_disable example
<?phpDas oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:
Array
(
[main()==>strlen] => Array
(
[ct] => 1
[wt] => 279
)
[main()==>xhprof_disable] => Array
(
[ct] => 1
[wt] => 9
)
[main()] => Array
(
[ct] => 1
[wt] => 610
)
)
|