Home >Backend Development >PHP Tutorial >PHP中的多维数组是指什么

PHP中的多维数组是指什么

PHPz
PHPzOriginal
2016-06-06 20:44:192288browse

PHP中的多维数组是指包含一个或多个数组的数组。在多维数组中主数组中的每一个元素也可以是一个数组,子数组中的每一个元素也可以是一个数组,并且一个数组中的值可以是另一个数组,另一个数组的值也可以是一个数组。

PHP中的多维数组是指什么

PHP多维数组是指什么?

PHP - 多维数组

多维数组是包含一个或多个数组的数组。

在多维数组中,主数组中的每一个元素也可以是一个数组,子数组中的每一个元素也可以是一个数组。

一个数组中的值可以是另一个数组,另一个数组的值也可以是一个数组。依照这种方式,我们可以创建二维或者三维数组:

示例:

<?php
// 二维数组:
$cars = array
(
    array("Volvo",100,96),
    array("BMW",60,59),
    array("Toyota",110,100)
);
?>

运行结果:

Array
(
    [0] => Array
        (
            [0] => Volvo
            [1] => 100
            [2] => 96
        )

    [1] => Array
        (
            [0] => BMW
            [1] => 60
            [2] => 59
        )

    [2] => Array
        (
            [0] => Toyota
            [1] => 110
            [2] => 100
        )

)

更多相关技术文章,请访问PHP中文网

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn