array_push

array_push

(PHP 4, PHP 5, PHP 7)

array_pushPush one or more elements onto the end of array

Description

int array_push ( array &$array , mixed $value1 [, mixed $... ] )

array_push() treats array as a stack, and pushes the passed variables onto the end of array. The length of array increases by the number of variables pushed. Has the same effect as:

<?php
$array[] = $var;
?>
repeated for