Php array key name tips

Source: Internet
Author: User
This article mainly introduces the php array key name tips, analyzes common php array key name usage tips, and has some reference value, for more information about php array key names, see the following section. Share it with you for your reference. The specific analysis is as follows:

1. $ arr [true] is equivalent to $ arr [1]; $ arr [false] is equivalent to $ arr [0].

2. using null as the key name is equivalent to creating or overwriting a $ arr [null]. you can use $ arr [null] or $ arr [""] for access.

3. when a number with a decimal point is used as the key name, the key name will automatically take the integer part as the key name. For example, if $ arr [123.45] = 5, you can use $ arr [123.45] or $ arr [123] to obtain the key value. use foreach to repeat the time, $ arr [123] is used.

4. $ arr [] = 5. this element is added to the array $ arr.

Note: The data type of the middle-key in the array is integer or string.

I hope this article will help you with php programming.

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.