What is the proper term for the type of array that does not contain textual keys?
That is to say
$my_array[0], $my_array[1] etc. vs $my_array['some-key']
An ‘indexed’ array? Is there even such a term for this type?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It is simply an array, the associative array you are referring to is a language implementation that will use a different underlying data structure and is not even possible in C. By definition when you are referring to an array by index that is all it is.
–Wikipedia