Adding an element to the beginning of an array in PHP
// Create an array $a = new array("apple", "orange"); // Prepend an element to the array array_unshift($a, "raspberry"); // Prepend a couple more elements to the array array_unshift($a, "pineapple", "watermelon");