Example analysis of PHP array key-value usage

Source: Internet
Author: User

This article mainly introduces the PHP array key usage, the example analyzes the PHP array key value system automatic allocation principle and the use skill, has certain reference value, needs the friend to be possible to refer to under

The example in this article describes the PHP array key-value usage. Share to everyone for your reference. The specific analysis is as follows:

First look at an array:

?
1 2 3 4 5 6 7 8 9 10 11 12 13 14-15 16 <?php $switching = Array (0 5 => 6, 3 => 7, ' A ' => 4, one,//key = 6 (the maximum value of an integer key index in the entire array is 5) ' 8 ' => 2,//Key = 8 (string Kin ' 8 ' converted to 8) ' =>,//key = ' 02 ' (note not 2) 0 => 12//Before the key with 10 is assigned 0, and the value of the 0 key is redefined to 12, overwriting the previous default 0 key value * / ); Empty array $empty = Array ();?>

If printed with Print_r ($switching) The result is:

Array ([0] => [5] => 6 [3] => 7 [A] => 4 [6] => one [8] => 2 [] => 77)

Notice that the two-digit 02 is lined up behind.

I hope this article will help you with your PHP program design.

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.