PHP: Remove the first and last item of the array

前端 未结 7 473
旧巷少年郎
旧巷少年郎 2021-01-31 07:47

Suppose I have this array:

 $array = array(\'10\', \'20\', \'30.30\', \'40\', \'50\');

Questions:

What is the fastest/

7条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2021-01-31 08:19

    array_pop($array); // remove the last element
    array_shift($array); // remove the first element
    

提交回复
热议问题