1$myArr = [1, 2, 3, 4];
2
3array_push($myArr, 5, 8);
4print_r($myArr); // [1, 2, 3, 4, 5, 8]
5
6$myArr[] = -1;
7print_r($myArr); // [1, 2, 3, 4, 5, 8, -1]
1$fruits = ["apple", "banana"];
2// array_push() function inserts one or more elements to the end of an array
3array_push($fruits, "orange");
4
5// If you use array_push() to add one element to the array, it's better to use
6// $fruits[] = because in that way there is no overhead of calling a function.
7$fruits[] = "orange";
8
9// output: Array ( [0] => apple [1] => banana [2] => orange )
1
2<?php
3$cesta = array("laranja", "morango");
4array_push($cesta, "melancia", "batata");
5print_r($cesta);
6?>
7
8
1
2<?php
3$stack = array("orange", "banana");
4array_push($stack, "apple", "raspberry");
5?>
6
7
1<?php
2$array1 = array("color" => "red", 2, 4);
3$array2 = array("a", "b", "color" => "green", "shape" => "trapezoid", 4);
4$result = array_merge($array1, $array2);
5/*
6Array
7(
8 [color] => green
9 [0] => 2
10 [1] => 4
11 [2] => a
12 [3] => b
13 [shape] => trapezoid
14 [4] => 4
15)
16*/
17?>