Blogger Information
Blog 6
fans 0
comment 0
visits 5184
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
数组的定义
Pythonxzm
Original
794 people have browsed it
<?php
$area = array(
       'china' => array(
           '上海',
           '湖北',
           '天津',
           '北京' => array(
               'hd' => '海淀',
               '朝阳',
               '房山',
               'cp' => '昌平',
           ),
           '广东' => array(
               '深圳',
               '广州',
               '佛山',
               'dg' => '东莞',
           ),
       ),
       'usa' => array(

           '华盛顿',
           '旧金山',
           '纽约' => array(
                   '曼哈顿区',
                   '皇后区',
                   '布鲁克林区',
           ),
       ),
);
//读取华盛顿
echo $area['usa']['0'];
echo '<hr>';
//读取:布鲁克林
echo $area['usa']['纽约'][2];
echo '<hr>';
//读取:昌平
echo $area['china']['北京']['cp'];
echo '<hr>';
//修改cp下标的值改为:西城区
$area['china']['北京']['cp'] = '西城区';
//输出看看原来昌平的值是否发生了变化
echo $area['china']['北京']['cp'];
echo '<hr>';
?>

QQ截图20170923162950.png

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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!