This doesn't exactly answer your question, but FWIW:
I think that if the only data you're storing is the price of something (an OS here), you're making it more difficult that it needs to be. Instead of having a multidimensional array like you have above, you could just do this:
$osPrices = array ('Linux'=>'0.00', 'Windows 2000'=>'299.99' );
then, to get the cost of an OS, you would just do:
echo $osPrices[Linux];
or if you passed the os name in a variable:
echo $osPrices[$currentOS];
Like i said, i know this doesn't answer your question, but if this is truly all you're doing, it should make things easier for you.