insert value in array php code example
Example 1: php append element to array
array_push($cart, 13);
Example 2: array_push php
<?php
$cesta = array("laranja", "morango");
array_push($cesta, "melancia", "batata");
print_r($cesta);
?>
Example 3: add item to array in php
<?php
$a=array("red","green");
array_push($a,"blue","yellow");
print_r($a);
?>
Example 4: php add item to array
<?php
$z = ['me','you', 'he'];
array_push($z, 'she', 'it');
print_r($z);
?>
Example 5: add array to array php
<?php
$array1 = array("color" => "red", 2, 4);
$array2 = array("a", "b", "color" => "green", "shape" => "trapezoid", 4);
$result = array_merge($array1, $array2);
?>
Example 6: php insert in array
$original = array( 'a', 'b', 'c', 'd', 'e' );
$inserted = array( 'x' );
array_splice( $original, 3, 0, $inserted );