How to use php array_push function?

藏色散人
Release: 2023-02-22 20:10:02
Original
3547 people have browsed it

php The array_push function is used to insert one or more elements to the end of the array. Its syntax is array_push(array, value1, value2...). The parameter array is required and refers to specifying an array; value1 is required and refers to specifying the elements to be added. value.

How to use php array_push function?

#php array_push function how to use?

Definition and usage

array_push() function inserts one or more elements to the end of the array.

Tip: You can add one or more values.

Note: Even if your array has string keys, the elements you add will have numeric keys (see example below).

Syntax

array_push(array,value1,value2...)
Copy after login

Parameters

array Required. Specifies an array.

value1 Required. Specifies the value to add.

value2 Optional. Specifies the value to add.

Return value: Returns the number of elements of the new array.

PHP Version: 4

Example 1

Array with string key names:

"red","b"=>"green"); array_push($a,"blue","yellow"); print_r($a); ?>
Copy after login

Output :

Array ( [a] => red [b] => green [0] => blue [1] => yellow )
Copy after login

Example 2

Insert "blue" and "yellow" to the end of the array:

Copy after login

Output:

Array ( [0] => red [1] => green [2] => blue [3] => yellow )
Copy after login

The above is the detailed content of How to use php array_push function?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
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!