PHP adds multiple variables to the end of the array by using the Array_push () function, Array_push array
This example describes how PHP adds multiple variables to the end of the array through the Array_push () function. Share to everyone for your reference. The specific analysis is as follows:
PHP adds multiple variables to the end of the array through the Array_push () function, and the Array_push function accepts any number of variables to add.
<?php$alpha = Array ("A", "B", "C"), $final = Array_push ($alpha, "D", "E");p rint "There is $total elements in \ $alpha"; foreach ($alpha as $val) {print" $val
";} Print "
";? >
I hope this article is helpful to everyone's PHP programming.
http://www.bkjia.com/PHPjc/969486.html www.bkjia.com true http://www.bkjia.com/PHPjc/969486.html techarticle PHP adds multiple variables to the end of the array by using the Array_push () function, and the Array_push array describes how PHP adds multiple variables to the end of the array through the Array_push () function. ...