Skip to content

Instantly share code, notes, and snippets.

@guibranco
Last active April 3, 2020 18:47
Show Gist options
  • Save guibranco/01c7bdc9dfcdb15a003a53d0d9e4d05a to your computer and use it in GitHub Desktop.
Save guibranco/01c7bdc9dfcdb15a003a53d0d9e4d05a to your computer and use it in GitHub Desktop.
Performance PHP - chamando count dentro de um for - https://www.facebook.com/groups/142151625841770/permalink/2962697863787118/
<?php
function myCount($array){
global $chamadas;
if($chamadas == 0)
echo "<i>Primeira chamada da função <b>myCount</b>!</i> <br />";
else
echo "Chamei a função <b>myCount</b> de novo! <b>Isso é um problema</b>...<br />";
$chamadas++;
return count($array);
}
echo "Chamando a função DENTRO do FOR<br /><br />";
$chamadas = 0;
$a = array("A", "B", "C", "D", "E", "F", "G");
for($i = 0; $i < myCount($a); $i++)
echo "Indice: " . $i . " - Valor: " . $a[$i] . "<br />";
echo "<br />Chamando a função ANTES do FOR<br /><br />";
$chamadas = 0;
$tamanho = myCount($a);
for($i = 0; $i < $tamanho; $i++)
echo "Indice: " . $i . " - Valor: " . $a[$i] . "<br />";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment