PHP Learning notes-associative arrays

Source: Internet
Author: User
Tags array definition

The traditional array definition method is as follows:

1 <? PHP 2 $names [0]= ' Chinese '; 3 $names [1]= ' math '; 4 $names [2]= ' 中文版 '; 5 6 Echo $names [2]; 7 ?>

What are the drawbacks? is not intuitive, because the reference array element is indexed, and the index is a number, you do not have a good understanding of what this number means, which is a bit like the relationship between IP address and domain name. In order to solve this problem, the concept of associative array is proposed.

What's the meaning of associative arrays? That is, when we define an array, we can give a name to the elements in the array, and you can use that name to refer to the array elements.

See two examples:

1 <? PHP 2 $books [' Lilei ']= 3; 3 $books [' hanmeimei '] = 5; 4 $books [' jim '] =n; 5 6 Echo $books [' Jim ']. ' <br> '; 7 8 ?>

1 <? PHP 2 3 $books=array(' Lilei ' =>3, ' Hanmeimei ' =>5, ' Jim ' =>12); 4 5 Echo $books [' Jim ']. ' <br> '; 6 7 ?>

Associative arrays are a bit like a hash table in a dictionary and data structure in Python.

PHP Learning notes-associative arrays

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.