array_pushphp 배열값 합치기 더하기(PHP 4, PHP 5, PHP 7)array_push — Push 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: repeated for each passed value...