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?


$last = end ( $numbers );
reset ( $numbers );
foreach ( $numbers as $number ) {
        if ( $number == $last ) {
                // last element
                ...
        }
        ....
}

--
John C. Nichel IV
Programmer/System Admin (ÜberGeek)
Dot Com Holdings of Buffalo
716.856.9675
[EMAIL PROTECTED]

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

Reply via email to