Contact: aviboots(AT)netvision.net.il
41,427 questions
53,974 answers
573 users
$array = [1, 2, 3, 4, 5, 6]; // Pop the first element $firstElement = array_shift($array); echo "Popped element: " . $firstElement . "\n"; print_r($array); /* run: Popped element: 1 Array ( [0] => 2 [1] => 3 [2] => 4 [3] => 5 [4] => 6 ) */