Voting

: one plus five?
(Example: nine)

The Note You're Voting On

communiti.ch
17 years ago
If your array is "huge"

It is reccomended to set a variable first for this case:

THIS->

$max = sizeof($huge_array);
for($i = 0; $i < $max;$i++)
{
code...
}

IS QUICKER THEN->

for($i = 0; $i < sizeof($huge_array);$i++)
{
code...
}

<< Back to user notes page

To Top