在 PHP 中,要向数组中添加一个值,可以使用以下方式:
array_push()
函数:$fruits = ['apple', 'banana', 'orange'];
array_push($fruits, 'grape');
$fruits = ['apple', 'banana', 'orange'];
$fruits[] = 'grape';
$fruits = ['a' => 'apple', 'b' => 'banana'];
$fruits['c'] = 'cherry';
无论使用哪种方法,添加值后,数组将会包含新的值。