Voting

: three minus three?
(Example: nine)

The Note You're Voting On

Richard Akindele
9 years ago
Another way to tack something to the beginning of an array is with array_merge().

$plans = array('AARP'=>'Senior', 'AAA'=>'Automobile Club');

$plans = array_merge(array("BAR"=>"Best Available Rate"), $plans);

<< Back to user notes page

To Top