Example of php array key value usage

Source: Internet
Author: User
This article mainly introduces the php array key value usage. The example analyzes the principle and usage skills of the system Auto-distribution of the key value in the php array, which has some reference value, for more information about how to use the php array key value, see the example in this article. Share it with you for your reference. The specific analysis is as follows:

First look at an array:

<? Php $ switching = array (10, // key = 0 5 => 6, 3 => 7, 'a' => 4, 11, // key = 6 (the maximum value of the integer key index in the entire array is 5) '8' => 2, // key = 8 (string Jian '8' is converted to 8) '02' => 77, // key = '02' (note not 2) 0 => 12/* the key with the first face value of 10 is assigned 0, the value of the 0 key is redefined as 12, which overwrites the default 0 key value */); // empty array $ empty = array ();?>

If printed using print_r ($ switching), the result is:

Array ([0] => 12 [5] => 6 [3] => 7 [a] => 4 [6] => 11 [8] => 2 [02] => 77)

Note that the two-digit 02 values are placed at the backend.

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.