Re: Efficency in looping arrays?

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



hey :)

i use for this reason:

for($i= 0, $size= sizeof($arr); $i < $size; $i++) {
  echo $arr[$i];
}

Peter Lauri:
> Best groupmember,
>
> For the moment when I loop an array I use something like this:
>
> reset($arr);
> while($a=each($arr)) {
>     echo $a['value'];
> }
>
> But the each() function genereates a array with four elements (0,1,value,
> key), I am only interested in the "value".
>

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux