João Cândido de Souza Neto wrote:
> Hello.
> 
> In the follow code:
> 
> $numbers=array(1,2,3,4,5);
> foreach ($numbers as number) {
>     ...
> }
> 
> Inside foreach, could i know if i am in the last element of the array 
> $numbers?

you've already had a few alternatives; how about this:

foreach ($numbers as $key => $number) {
        // loopy stuff
}
// do something special with the last item (and it's key?)
// which will currently be stored in $number and $key respectively
// e.g. :
processWhateverTheLastElementWas($numbers[ $key ]);
// or :
processWhateverTheLastElementsValueWas($number);

basically immediately after the foreach loop you have the key and value
of the last element - chances are you therefore have what you need to do what 
you need. no?


> 

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

Reply via email to