<?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>';
?>
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!