在PHP中,可以使用unset()
函數來刪除數組中的指定元素。下面是一個例子:
$fruits = array("apple", "banana", "orange", "grape");
// 刪除數組中的第二個元素(下標為1)
unset($fruits[1]);
// 打印結果
print_r($fruits);
輸出結果為:
Array
(
[0] => apple
[2] => orange
[3] => grape
)
注意,使用unset()
函數刪除數組元素時,會保留原數組的索引。如果要重新索引數組,可以使用array_values()
函數。例如:
$fruits = array_values($fruits);
print_r($fruits);
輸出結果為:
Array
(
[0] => apple
[1] => orange
[2] => grape
)