xhprof_disable(PECL xhprof >= 0.9.0) xhprof_disable — Stops xhprof profiler Описание
   array xhprof_disable
    ( void
   ) 
  Stops the profiler, and returns xhprof data from the run. Список параметровУ этой функции нет параметров. Возвращаемые значенияAn array of xhprof data, from the run. ПримерыПример #1 xhprof_disable() example 
<?phpРезультатом выполнения данного примера будет что-то подобное: 
Array
(
    [main()==>strlen] => Array
        (
            [ct] => 1
            [wt] => 279
        )
    [main()==>xhprof_disable] => Array
        (
            [ct] => 1
            [wt] => 9
        )
    [main()] => Array
        (
            [ct] => 1
            [wt] => 610
        )
)
 | 
||