function unshift(&$array, &$elements) {
$temp = array();
for ($i = 0; $i <= count($elements); $i++) {
$temp[] = $elements[$i];
}
for ($i = 0; $i <= count($array); $i++) {
$temp[] = $array[$i];
}
$array = $temp;
}
That should do it, but it's not tested.