在 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'
];
以上是設置關聯數組元素的幾種常見方法。