Last active
April 3, 2020 18:47
-
-
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/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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