Ver Mensaje Individual
  #3 (permalink)  
Antiguo 22/08/2005, 14:24
Avatar de shinblood
shinblood
 
Fecha de Ingreso: diciembre-2003
Ubicación: lima
Mensajes: 214
Antigüedad: 20 años, 4 meses
Puntos: 1
Si kieres alivianar el tiempo de respuesta en el code php puedes revisar esto tal vez te ayude http://www.php.net/manual/es/function.ob-start.php

y se revisas este ejemplo te daras cuenta del tiempo ejecucion que demorar al usar estas funciones
http://www.php.net/manual/es/ref.outcontrol.php

ob_start ();
for ($i = 0; $i < 5000; $i++)
echo str_repeat ("your string blablabla bla bla", (rand() % 4) + 1)."<br>\n";

ob_end_flush ();
__________________
saludos :adios:

Última edición por shinblood; 22/08/2005 a las 14:33