Home  >  Article  >  Backend Development  >  How to add data to an array in php

How to add data to an array in php

hzc
hzcOriginal
2020-06-23 11:35:554179browse

How to add data to an array in php

What is the way to add data to an array in php?

Use the function array_push

array_push() The function adds one or more elements (push) to the end of the array of the first parameter, and then returns the length of the new array.

This function is equivalent to calling $array[] = $value multiple times.

Syntax; array_push(array,value1,value2...)

Parameters Description

array Required. Specifies an array.

value1 Required. Specifies the value to add.

value2 Optional. Specifies the value to add.

<!DOCTYPE html>
<html>
<body>
<?php
$a=array("red","green");
array_push($a,"blue","yellow");
print_r($a);
?>
</body>
</html>

Run result:

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

Recommended tutorial: "php tutorial"

The above is the detailed content of How to add data to an array 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