add elements to php array code example
Example 1: array_push php
<?php
$cesta = array("laranja", "morango");
array_push($cesta, "melancia", "batata");
print_r($cesta);
?>
Example 2: add object in array php
$myArray = array("name" => "my name");
echo json_encode($myArray);