Re: [PHP] getting numeric index of array
In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] (Christian Dechery) wrote: > $myArray = array( > "one" => "something", > "two" => "otherthing", > "three" => "whatever" > ); > > I want to, given the key (or value),
[PHP] getting numeric index of array
I wanna get the numeric index for a multi-dimensional associative array... I have like $myArray = array( "one" => "something", "two" => "otherthing", "three" => "whatever" ); I want to, given the key (or val