Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 28428 программистов и 2722 робота. Сейчас ищут 649 программистов ...
xhprof_disable - Stops xhprof profiler
Вернуться к: Xhprof Функции
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
xhprof_enable();
$foo = strlen("foo bar");
$xhprof_data = xhprof_disable();
print_r($xhprof_data);
?>
Результатом выполнения данного примера будет что-то подобное:
Array
(
[main()==>strlen] => Array
(
[ct] => 1
[wt] => 279
)
[main()==>xhprof_disable] => Array
(
[ct] => 1
[wt] => 9
)
[main()] => Array
(
[ct] => 1
[wt] => 610
)
)
Вернуться к: Xhprof Функции