1. 程式人生 > >unset和array_splice區別

unset和array_splice區別

如果刪除陣列中的一個元素,你要用unset的話,刪除是能刪除,但是陣列的索引不會重排;

結果:

如果用array_splice就能完美解決這個問題。

 

 結果:

總結:

array_splice()刪除陣列索引重排,unset不能。