可以使用如下方式访问输出数组单元值:
echo $arr_age1[0]; //输出:18 echo $arr_age2["wang"]; //输出:18
某些情况下为了调试,可能需要输出整个数组的数据及结构,这时候需要使用 print_r() 或 var_dump() 函数
0