Blogger Information
Blog 27
fans 2
comment 0
visits 19615
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
PHP数组---PHP九期线上班
一丁
Original
708 people have browsed it

1.创建数组

(1)创建空数组

实例

<?php
$arr = array();
var_dump( $arr );

运行实例 »

点击 "运行实例" 按钮查看在线实例

运行结果图:

image.png


手写:

image.png


2.1.创建索引数组

实例

<?php
$arr = array(
    '一丁',
    'test',
    'best'
);
var_dump( $arr );

运行实例 »

点击 "运行实例" 按钮查看在线实例

运行结果图:

image.png

手写:

image.png


2.2.创建关联数组

实例

<?php
$arr = array(
    '01'=>'一丁',
    '02'=>'test',
    '03'=>'best'
);
var_dump($arr['01']);

运行实例 »

点击 "运行实例" 按钮查看在线实例

运行结果图:

image.png

手写:

image.png


3.访问数组的数据

实例

<?php
$arr = array(
    '一丁',
    'test',
    'best'
);
echo $arr[0];
echo '<br>';
echo $arr[1];
echo '<br>';
echo $arr[2];

运行实例 »

点击 "运行实例" 按钮查看在线实例

运行结果图:

image.png

手写:

image.png


4.1.二维数组

实例

<?php
$arr = array(
    array(
    '一丁',
    'best'
    ),
    array(
        '一丁',
        'good'
    ),
);
print_r($arr);

运行实例 »

点击 "运行实例" 按钮查看在线实例

运行结果图:

image.png

手写:

image.png

4.2三维数组

实例

<?php
$arr = array(
    array(
    '01'=>'一丁',
        '02'=>'best'
    ),
    array(
        '03'=>'一丁',
        '04'=>'good'
    ),
    array(
        '05'=>'一丁',
        '06'=>'evry good'
    ),
);
print_r($arr);
echo $arr[2]['05'];

运行实例 »

点击 "运行实例" 按钮查看在线实例

image.png

手写:

image.png

5.二维数组循环

实例

<?php
$arr = array(
    '01'=>'一丁',
        '02'=>'best'
);
foreach($arr as $v){
    echo $v;
    echo '<hr>';
}

运行实例 »

点击 "运行实例" 按钮查看在线实例

运行结果图:

image.png


手写:


image.png

6.多维数组循环

实例

<?php
$arr =[
    [
    '01'=>'一丁',
        '02'=>'best'
        ],
    [
        '03'=>'一丁',
        '04'=>'good'
    ],
];
foreach($arr as $k=>$v){
    print_r($v);
    echo $v['03'];
}

运行实例 »

点击 "运行实例" 按钮查看在线实例

运行结果图:

image.png

手写:

image.png



Correcting teacher:查无此人查无此人

Correction status:qualified

Teacher's comments:完成的不错。
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post