Natascha Chrobok wrote:
How can I get the numeric Index of an array when the index is a string?


string indexes don't have numeric indexes. they are in order however, if you want to find the order of a value, use:


echo array_search(array_search("my second value", $myArray), array_keys($myArray));

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



Reply via email to