Voting

: zero plus four?
(Example: nine)

The Note You're Voting On

daniel at smallboxcms dot com
10 years ago
Anonymous' associative version wasn't working for me, but it did with this small tweak:

function array_unshift_assoc(&$arr, $key, $val)
{
$arr = array_reverse($arr, true);
$arr[$key] = $val;
$arr = array_reverse($arr, true);
return $arr;
}

<< Back to user notes page

To Top