可以結合其他函數來使用PHP的array_shift,例如結合array_values函數來重新索引數組。示例如下:
$fruits = array("apple", "banana", "orange", "grape");
$shifted = array_shift($fruits);
$reindexed = array_values($fruits);
print_r($reindexed);
在這個例子中,我們首先使用array_shift函數從數組中移除第一個元素,并將其賦值給變量$shifted。然后,我們使用array_values函數重新索引數組$fruits,并將結果賦值給變量$reindexed。最后,我們打印輸出$reindexed數組,其中第一個元素已被移除并且重新索引。