在PHP中,可以使用array_push()函數向數組末尾添加一個或多個元素。例如:
$fruits = array("apple", "banana");
array_push($fruits, "orange", "grape");
另一種方式是手動索引賦值:
$fruits = array("apple", "banana");
$fruits[] = "orange";
$fruits[] = "grape";
兩種方式都可以向數組末尾添加元素,但是使用array_push()函數更加簡潔和直觀。手動索引賦值需要手動管理索引值,可能會引起錯誤。
總的來說,建議使用array_push()函數來向數組添加元素,特別是當需要添加多個元素時。