cañangasñangas Posted January 23, 2013 Report Share Posted January 23, 2013 aca les dejo una rutina para saber cuanto demora en cargar tu pag... Agregar esto al principio de tu codigo: <?php function microtime_float(){ list($usec, $sec) = explode(" ", microtime()); return ((float)$usec + (float)$sec); } $time_start = microtime_float(); ?> Agregar esto al final de tu codigo: <?php $time_end = microtime_float(); $time = number_format($time_end - $time_start, 5); echo "<!-- la página cargo en $time segundos-->"; ?> Ahora lo unico que debes hacer es revisar el codigo de tu web con tu explorador y ver al final del codigo cuanto demoro. Saludos :) Link to comment Share on other sites More sharing options...
panchompc Posted January 27, 2013 Report Share Posted January 27, 2013 Gracias Link to comment Share on other sites More sharing options...
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now