remove first element in array php
$arr = [1,2,3,4];
array_shift($arr);
print_r($arr); // [2,3,4]
remove first element in array php
$arr = [1,2,3,4];
array_shift($arr);
print_r($arr); // [2,3,4]
array shift php
array_shift — Shift an element off the beginning of array
array_shift($array) shifts the first value of the array off and returns it,
shortening the array by one element and moving everything down. All numerical
array keys will be modified to start counting from zero while literal keys
won't be affected.
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us