03/09/2010, 07:28
|
| | Fecha de Ingreso: abril-2008
Mensajes: 22
Antigüedad: 16 años, 7 meses Puntos: 0 | |
Respuesta: ¿Cómo mostrar el tiempo de búsqueda? Hola Jvmjunior
Aquí te dejo un link donde encontré tu solución [URL="http://www.webexperto.com/articulos/art/157/tiempo-de-carga-de-una-pagina-php/"]http://www.webexperto.com/articulos/art/157/tiempo-de-carga-de-una-pagina-php/[/URL]
<!-- Ubicar este script al comienzo de la página -->
<?php
$mtime = microtime();
$mtime = explode(" ",$mtime);
$mtime = $mtime[1] + $mtime[0];
$tiempoinicial = $mtime;
;?>
<!-- Comienzo del código del Sitio -->
<html>
...
</html>
<!-- Ubicar este script al final de la página -->
<?php
$mtime = microtime();
$mtime = explode(" ",$mtime);
$mtime = $mtime[1] + $mtime[0];
$tiempofinal = $mtime;
$tiempototal = ($tiempofinal - $tiempoinicial);
echo "La página fue creada en ".$tiempototal." segundos";
;?>
Saludos |