PHP array using rule parsing, php array rule _php Tutorial

Source: Internet
Author: User

PHP arrays using rule parsing, PHP array rules


This paper analyzes the rules of using arrays in PHP. Share to everyone for your reference. The specific analysis is as follows:

The array is in the gray-most important position in PHP. strings, pictures, digital, video equivalents exist in the form of arrays, so it is necessary to understand the various rules of the array.

1, key, value.

The basic form of an array:

Array ([Key =>]value   , ...)

Key=>value, where key can only be two, integer, String. While value can be in various forms, except for numbers, all other values must be "or" to enclose the string. The following example illustrates the rule:

<?php  $a = Array ( -1=>2,         -2=>3, ' 99.jpg ', ' 8 ', '           a ',     ' B ' =>true,         NULL,            "",      1.2=>0.5,        );       Print_r ($a);? >

Output: Array ([-1] = 2 [-2] = 3 [] = 99.jpg [0] = 8 [1] = 0.5 = 1 [2] = [3] = =)

I hope this article is helpful to everyone's PHP programming.

http://www.bkjia.com/PHPjc/961388.html www.bkjia.com true http://www.bkjia.com/PHPjc/961388.html techarticle PHP array using rule analysis, PHP array rules This article analyzes the use of arrays in PHP rules. Share to everyone for your reference. The specific analysis is as follows: The array in PHP is in the gray weight ...

  • 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.