Posted by elmosik on 11/11/55 12:00
On 16 Sty, 23:32, "Guillaume Dargaud" <USE_MY_WEB_F...@gdargaud.net>
wrote:
> I'm pretty sure there's a better way to do this without having to explore
> the whole array until a match is found, but the solution escapes me at the
> moment:
>
> foreach ($Array as $key)
> if ($key[1]===$Whatever) {
> $Found=$key[0];
> break;
> }
If you're looking for key instead of item you should write:
foreach( $array as $key => $item )...
looking for item? use array_search.
[Back to original message]
|