<?php $a=array("a"=>"red","b"=>"green"); array_unshift($a,"blue"); print_r($a); ?> Array ( [0] => blue [a] => red [b] => green )