php數(shù)組怎么增加一個(gè)值

PHP
小億
100
2024-03-25 16:19:43
欄目: 編程語言

在 PHP 中,要向數(shù)組中添加一個(gè)值,可以使用以下方式:

  1. 使用 array_push() 函數(shù):
$fruits = ['apple', 'banana', 'orange'];
array_push($fruits, 'grape');
  1. 直接給數(shù)組賦值:
$fruits = ['apple', 'banana', 'orange'];
$fruits[] = 'grape';
  1. 使用指定鍵名添加值:
$fruits = ['a' => 'apple', 'b' => 'banana'];
$fruits['c'] = 'cherry';

無論使用哪種方法,添加值后,數(shù)組將會(huì)包含新的值。

0