Arrays in PHP

Source: Internet
Author: User

In PHP, there are three types of arrays:

    • Indexed array-an array with a numeric index
    • Associative array-An array with the specified key
    • Multidimensional arrays-An array that contains one or more arrays

Auto assign subscript starting from 0

$cars =array ("Volvo", "BMW", "SAAB");


Or you can manually assign an index:

$cars [0]= "Volvo"; $cars [1]= "BMW"; $cars [2]= "SAAB";



PHP Associative array

An associative array is an array that uses the specified key that you assign to the array.

There are two ways to create an associative array:

$age =array ("Peter" and "a", "Ben" = "Notoginseng", "Joe" and "43");

Or:

$age [' Peter ']= '; $age [' Ben ']= "Notoginseng"; $age [' Joe ']= "43";

foreach Loop traversal output
$age =array ("Bill" = "+", "Steve" = "Notoginseng", "Peter" and "+"), foreach ($age as $x + $x _value) {  echo "key=". $ X. ", value=." $x _value;  echo "<br>";}

Arrays in PHP

Related Article

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.