Working with an array with periods in key values
Use single quotes when referencing the key value (basically treat it like a string, that's what PHP is probably doing)
echo $array['3.3'];
From php manual :
Floats in key are truncated to integer.
So you're trying to get $array[3] which does not exist, so you get Null