array_shift 将数组开头的单元移出数组 &reftitle.description; mixedarray_shift arrayarray array_shiftarray 的第一个单元移出并作为结果返回,将 array 的长度减一并将所有其它单元向前移动一位。所有的数字键名将改为从零开始计数,文字键名将不变。如果 array 为空(或者不是数组),则返回 &null;。 &array.resetspointer; <function>array_shift</function> 例子 ]]> 这将使 $stack 剩下 3 个单元: banana [1] => apple [2] => raspberry ) ]]> 并且 orange 被赋给了 $fruit 参见 array_unshiftarray_pusharray_pop &reftitle.parameters; array The input array. &reftitle.returnvalues; Returns the shifted value, or &null; if array is empty or is not an array. &reftitle.examples; <function>array_shift</function> example ]]> &example.outputs; banana [1] => apple [2] => raspberry ) ]]> and orange will be assigned to $fruit. &reftitle.seealso; array_unshift array_push array_pop