Array Append Array Php Code Example


Example 1: php append to array

$myArr = [1, 2, 3, 4];  array_push($myArr, 5, 8); print_r($myArr); // [1, 2, 3, 4, 5, 8]  $myArr[] = -1; print_r($myArr); // [1, 2, 3, 4, 5, 8, -1]

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); ?>

Comments

Popular posts from this blog

Are Regular VACUUM ANALYZE Still Recommended Under 9.1?

Can Feynman Diagrams Be Used To Represent Any Perturbation Theory?