Tempo de execução do script em PHP
Publicado por Angelito Monteiro Goulart (última atualização em 06/12/2011)
[ Hits: 14.717 ]
Homepage: http://angelitomg.com
Script que calcula o tempo que a página levou para ser processada.
Deve-se incluir o arquivo exec_time.php no início do script, chamar a função startExec() logo após e no final do script deve-se chamar a função endExec(), responsável por finalizar a medição e exibir o resultado na tela.
<?php /* * * @file: exec_time.php * * @author: Angelito M. Goulart * * @date: 22/11/2011 * * @description: calculates the time of execution of a script * * @use: include this file in the top of the script, call function startExec() and * the end of script call the function endExec(). * * Function endExec print results in the screen. * */ global $time; /* Get current time */ function getTime(){ $microtime = explode(" ", microtime()); $time = $microtime[0] + $microtime[1]; return $time; } /* Calculate start time */ function startExec(){ global $time; $time = getTime(); } /* * Calculate end time of the script, * execution time and print * result in the screen */ function endExec(){ global $time; $finalTime = getTime(); $execTime = $finalTime - $time; echo 'Execution time: ' . number_format($execTime, 6) . ' ms'; } ?>
Converter String para Minúsculo
Compartilhando a tela do Computador no Celular via Deskreen
Como Configurar um Túnel SSH Reverso para Acessar Sua Máquina Local a Partir de uma Máquina Remota
Configuração para desligamento automatizado de Computadores em um Ambiente Comercial
Como renomear arquivos de letras maiúsculas para minúsculas
Imprimindo no formato livreto no Linux
Vim - incrementando números em substituição
Efeito "livro" em arquivos PDF
Como resolver o erro no CUPS: Unable to get list of printer drivers
Não to conseguindo resolver este problemas ao instalar o playonelinux (1)
Excluir banco de dados no xampp (1)
[Python] Automação de scan de vulnerabilidades
[Python] Script para analise de superficie de ataque
[Shell Script] Novo script para redimensionar, rotacionar, converter e espelhar arquivos de imagem
[Shell Script] Iniciador de DOOM (DSDA-DOOM, Doom Retro ou Woof!)
[Shell Script] Script para adicionar bordas às imagens de uma pasta