本教程操作环境:windows7系统、PHP7.1版、DELL G3电脑
php数组初始化的3种方法
方法1:单独给数组中的元素赋值
立即学习“PHP免费学习笔记(深入)”;
$数组变量名[下标] = 值;
其中下标(索引值)可以是一个字符串或一个整数,并且下标需要使用[]包裹。
<?phpheader("Content-type:text/html;charset=utf-8");$a["color"]="red";$a["taste"]="sweet";$a["shape"]="round";$a["name"]="apple";$a[3]=4;var_dump($a);?>
下标可以省略,,这时索引值默认从 0 开始依次增加。
<?phpheader("Content-type:text/html;charset=utf-8");$a[]="red";$a[]="sweet";$a[]="round";$a[]="apple";$a[]=4;var_dump($a);?>
方法2:利用[]把所有的元素一起初始化
$数组变量名=[key1 => value1, key2 => value2, ..., keyN => valueN];
示例:
<?phpheader("Content-type:text/html;charset=utf-8");$arr=["color"=>"red","taste"=>"sweet","shape"=>"round","name"=>"apple"];var_dump($arr);?>
key可以省略,即可以不使用=>符号指定下标,则默认为索引数组。默认的索引值也是从 0 开始依次增加。
<?phpheader("Content-type:text/html;charset=utf-8");$arr=["red","sweet","round","apple"];var_dump($arr);?>
方法3:使用 array() 函数把所有的元素一起初始化
$数组变量名 = array(key1 => value1, key2 => value2, ..., keyN => valueN);
同样key可以省略,即可以不使用=>符号指定下标,则默认为索引数组。默认的索引值也是从 0 开始依次增加。
<?phpheader("Content-type:text/html;charset=utf-8");$arr1 = array("color"=>"red","taste"=>"sweet","shape"=>"round","name"=>"apple");var_dump($arr1);$arr2=array("red","sweet","round","apple");var_dump($arr2);?>
推荐学习:《PHP视频教程》
免责声明:本站内容仅用于学习参考,信息和图片素材来源于互联网,如内容侵权与违规,请联系我们进行删除,我们将在三个工作日内处理。联系邮箱:chuangshanghai#qq.com(把#换成@)