array_push
函數是用于向數組末尾添加一個或多個元素的方法。
語法:
array_push(array, value1, value2, ...)
參數:
array
:必需,要添加元素的數組。value1, value2, ...
:可選,要添加到數組的元素。返回值:
示例:
$fruits = array("apple", "banana");
array_push($fruits, "orange", "grape");
print_r($fruits);
輸出:
Array
(
[0] => apple
[1] => banana
[2] => orange
[3] => grape
)
在上面的示例中,我們將 “orange” 和 “grape” 添加到了 $fruits
數組的末尾。