数组可以直接用[]的方式进行声明。但是需要注意的是。
直接利用:变量 = [数组]
这样的方式去声明一个数组的时候,只有在PHP5以上的版本才支持,PHP5一下的版本并不支持这种方式。
方式为:
$num = [1,2,3,4,5,6];
$num = [1=>'数组键1',2=>'数组键2'];
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!