PHP 8.3.4 Released!

xhprof_disable

(PECL xhprof >= 0.9.0)

xhprof_disableStops xhprof profiler

Descrição

xhprof_disable(): array

Stops the profiler, and returns xhprof data from the run.

Parâmetros

Esta função não possui parâmetros.

Valor Retornado

An array of xhprof data, from the run.

Exemplos

Exemplo #1 xhprof_disable() example

<?php
xhprof_enable
();

$foo = strlen("foo bar");

$xhprof_data = xhprof_disable();

print_r($xhprof_data);
?>

O exemplo acima produzirá algo semelhante a:

Array
(
    [main()==>strlen] => Array
        (
            [ct] => 1
            [wt] => 279
        )

    [main()==>xhprof_disable] => Array
        (
            [ct] => 1
            [wt] => 9
        )

    [main()] => Array
        (
            [ct] => 1
            [wt] => 610
        )

)
add a note

User Contributed Notes 1 note

up
11
FatBat
9 years ago
Raw output snippet with, XHPROF_FLAGS_CPU + XHPROF_FLAGS_MEMORY.

[main()] => Array
(
[ct] => 1 // number of calls.
[wt] => 419 // wall/wait time (ms).
[cpu] => 0 // cpu time.
[mu] => 8264 // memory usage (bytes).
[pmu] => 0 // peak memory usage.
)
To Top