Source Code:
(back to article)
<?php $array = []; // Add a new element to the beginning of the array array_unshift($array, 'apple'); // Add another element to the beginning of the array array_unshift($array, 'banana'); // Add a third element to the beginning of the array array_unshift($array, 'orange'); print_r($array);
Result:
Report an issue