|
Posted by Pedro Graca on 10/21/06 21:17
Pedro Graca wrote:
> <?php
> function array_function($needle, $array) {
> $n = 0;
> foreach ($array as $value) {
> if ($needle == $value) return $n;
> ++$n;
> }
return false;
> }
>
> $data = array('name'=>'forty-two', 'dob'=>'2006-10-21', 'eye-color'=>'brown');
> $zero_index = (int)array_function('brown', $data);
>
> ### if ($zero_index != 2) {
> ### // error!
> ### }
> ?>
--
File not found: (R)esume, (R)etry, (R)erun, (R)eturn, (R)eboot
I don't check the dodgeit address (very often).
If you *really* need to mail me,
use the address in the Reply-To header.
[Back to original message]
|