how do I add an element to the start of an associative array.
eg. I want to add "zero"=>"zerovalue" onto the start of this
$oldarray = array("first"=>"firstvalue","second"=>"secondvalue");
I've tried array_unshift, but this makes the key for the first element 0.
surely this must be possible, but my googling isn't getting me too far.