php $list = array("Apple", "Banana", "Carrot");
unset($list[0]);
// Be aware of that $list[0] isn't set. "Banana" is still $list[1]
<?php
$list = array("Apple", "Banana", "Carrot");
unset($list[0]);
// Be aware of that $list[0] isn't set. "Banana" is still $list[1]
?>