found this user comment via the manual;
function array_insert (&$array, $position, $insert_array)
{
$first_array = array_splice ($array, 0, $position);
$array = array_merge ($first_array, $insert_array, $array);
}
array_insert ($data, 1, array ('archive' => $archive));
credit to weikard at gmx dot de