Detailed explanation of php array_shift() function: delete the first element in the array

怪我咯
Release: 2023-03-08 06:22:01
Original
9169 people have browsed it

What is the function of php array_shift() function?

The array_shift() function in php deletes the first element in the array and returns the value of the deleted element. This article introduces the usage and definition of the php array_shift() function in detail. If you are interested, you can take a look. I hope it will be helpful to everyone.

Definition and usage

array_shift() function deletes the first element in the array and returns the value of the deleted element, or NULL if the array is empty. . If the key name is numeric, all elements will get new key names, starting from 0 and incrementing by 1 (refer to the code in Example 2 below), and the literal key values will remain unchanged.

Syntax

array_shift(array)
Copy after login

The parameter array is a specified array and must be specified.

Example 1

Use thephp array_shift() function to delete the first element in the $stack array and return the deleted element. The code is as follows

Copy after login

The code execution output is:

Detailed explanation of php array_shift() function: delete the first element in the array

After the above code deletes the first element in the $stack array, The element orange is assigned to $fruit.

Example 2

Use the php array_shift() function to delete the array with numeric key names. The code is as follows:

"red",1=>"green",2=>"blue"); echo array_shift($a); print_r ($a); ?>
Copy after login

The code running output results:

Detailed explanation of php array_shift() function: delete the first element in the array

You can see that the key name of the original element "green" is "1", but after using the array_shift() function, all key names will start from 0

【Recommended related articles】

Definition and usage of php array function array_push()

array_push in php (), array_pop() and array_shift() function usage examples

The above is the detailed content of Detailed explanation of php array_shift() function: delete the first element in the array. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!