xhprof_sample_disable
PHP Manual
PHP Manual»Xhprof Funzioni»xhprof_sample_disable

xhprof_sample_disable

(PECL xhprof >= 0.9.0)

xhprof_sample_disableStops xhprof sample profiler

Descrizione

function xhprof_sample_disable(): ?array

Stops the sample mode xhprof profiler, and returns the profile info.

Elenco dei parametri

Questa funzione non contiene parametri.

Valori restituiti

An array of xhprof sample data, from the run. Returns null if profiling is not enabled.

Esempi

Example #1 xhprof_sample_disable() example

<?php
xhprof_sample_enable();

for ($i = 0; $i <= 10000; $i++) {
    $a = strlen($i);
    $b = $i * $a;
    $c = rand();
}

$xhprof_data = xhprof_sample_disable();

print_r($xhprof_data);
?>

Il precedente esempio visualizzerà qualcosa simile a:

Array
(
    [1272935300.800000] => main()
    [1272935300.900000] => main()
)
To Top