在 PHP 中,要向數(shù)組中添加一個(gè)值,可以使用以下方式:
array_push()
函數(shù):$fruits = ['apple', 'banana', 'orange'];
array_push($fruits, 'grape');
$fruits = ['apple', 'banana', 'orange'];
$fruits[] = 'grape';
$fruits = ['a' => 'apple', 'b' => 'banana'];
$fruits['c'] = 'cherry';
無論使用哪種方法,添加值后,數(shù)組將會(huì)包含新的值。