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
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now