Answers for "php add array to array third position"

PHP
4

php add element to array first position

<?php
$queue = array("orange", "banana");
array_unshift($queue, "apple", "raspberry");
print_r($queue);
?>
  Array
(
    [0] => apple
    [1] => raspberry
    [2] => orange
    [3] => banana
)
Posted by: Guest on August-13-2020
0

php array add element on top of array

<?php

$a=array("a"=>"red","b"=>"green");
array_unshift($a,"blue");
print_r($a);

?>
Posted by: Guest on August-25-2021

Code answers related to "php add array to array third position"

Browse Popular Code Answers by Language