阅读量:0
在 PHP 中,可以使用以下方式来设置关联数组中的元素:
// 创建一个空的关联数组 $fruit = array(); // 设置关联数组元素 $fruit['apple'] = 'red'; $fruit['banana'] = 'yellow'; $fruit['orange'] = 'orange'; // 使用数组字面量的方式设置关联数组 $color = array( 'apple' => 'red', 'banana' => 'yellow', 'orange' => 'orange' ); // 使用 array() 函数的方式设置关联数组 $color = array( 'apple' => 'red', 'banana' => 'yellow', 'orange' => 'orange' ); // 使用数组赋值方式设置关联数组 $fruit = [ 'apple' => 'red', 'banana' => 'yellow', 'orange' => 'orange' ];
以上是设置关联数组元素的几种常见方法。