我试图删除最后一个数组的第一个元素
数组:
$harbours = array(
'67' => array('boat1', 'boat2'),
'43' => array('boat3', 'boat4')
);
我想删除并返回boat3
$last = end($harbours);
$boat = array_shift($last);
如果我那时print_r ($harbours)
,'boat3' 仍然存在。