Restituisce un array con il valore dato aggiunto all’inizio.
array_prepend(array(1,2,3),0) → array: 0,1,2,3
–