How to add array elements in php

王林
Release: 2023-03-02 15:10:01
Original
4117 people have browsed it

The way PHP adds array elements is through the array_push() function. This function can insert one or more elements to the end of the array and return the number of elements in the new array. Function syntax: [array_push(array, value)].

How to add array elements in php

#To add array elements, you can use the array_push() function. Let's introduce this function in detail below.

(Recommended tutorial: php tutorial)

Function introduction:

array_push() function inserts one or more elements to the end of the array. This function returns the number of elements in the new array.

Function syntax:

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

Parameter description:

  • array Required. Specifies an array.

  • #value1 Required. Specifies the value to add.

  • #value2 Optional. Specifies the value to add.

Code implementation:

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

Output result:

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

The above is the detailed content of How to add array elements in php. 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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template