Complete PHP Array Reference
The array_shift() function removes the first element from an array, and returns the value of the removed element.
| Parameter | Description |
|---|---|
| array | Required. Specifies an array |
Note: If the keys are numeric, all elements will get new keys, starting from 0 and increases by 1. (See example 2)
The output of the code above will be:
With numeric keys:
The output of the code above will be:
Complete PHP Array Reference
Your message has been sent to W3Schools.