Home  >  Article  >  Backend Development  >  How to add array elements in php

How to add array elements in php

王林
王林Original
2020-07-15 15:56:434067browse

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...)

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);
?>

Output result:

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

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!

Statement:
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