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!