“PHP TIEMPO UN SCRIPT” Código de respuesta

PHP TIEMPO UN SCRIPT

//place this before any script you want to calculate time
$time_start = microtime(true); 

//sample script
for($i=0; $i<1000; $i++){
 //do anything
}

$time_end = microtime(true);
$execution_time = ($time_end - $time_start);
echo '<b>Total Execution Time:</b> '.($execution_time*1000).'Milliseconds';
Friendly Hawk

Tiempo de PHP cuánto tiempo lleva una función

<?php
$startTime = microtime(true);

/*stuff is going on*/

echo "Elapsed time is: ". (microtime(true) - $startTime) ." seconds";
Wandering Wolverine

Respuestas similares a “PHP TIEMPO UN SCRIPT”

Preguntas similares a “PHP TIEMPO UN SCRIPT”

Más respuestas relacionadas con “PHP TIEMPO UN SCRIPT” en PHP

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código