foreach(Info::countries() as $country):
Countries method in Info class returns the array of countries. My question, will countries method be executed one time or the amount of countries there are?
Because this:
for($i = 0; count($array); $i++)
would count array many times.
1 time.
It is the same as doing this: