Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

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
)

Source by www.php.net #
 
PREVIOUS NEXT
Tagged: #php #add #element #array #position
ADD COMMENT
Topic
Name
5+5 =