xhprof_disable
(PECL xhprof >= 0.9.0)
xhprof_disable — Detiene el perfilado xhprof
Descripción
function xhprof_disable():
?array
Parámetros
Esta función no contiene ningún parámetro.
Valores devueltos
Un array de datos xhprof, procedentes de su ejecución.
Devuelve null si el perfilado no está activado.
Ejemplos
Ejemplo #1 Ejemplo con xhprof_disable()
<?php
xhprof_enable();
$foo = strlen("foo bar");
$xhprof_data = xhprof_disable();
print_r($xhprof_data);
?>
Resultado del ejemplo anterior es similar a:
Array
(
[main()==>strlen] => Array
(
[ct] => 1
[wt] => 279
)
[main()==>xhprof_disable] => Array
(
[ct] => 1
[wt] => 9
)
[main()] => Array
(
[ct] => 1
[wt] => 610
)
)