This PHP version (5.3.1) is the one that comes with the latest XAMPP 1.7.3
It appears that this version has a reference bug which causes the following badness
$temp=new CMap;
$temp['a']=array("foo"=>"bar");
$temp['a']["rr"]=5;
print_r($temp);
What this version of php returns
CMap Object
(
[_d:CMap:private] => Array
(
[a] => Array
(
[foo] => bar
)
)
[_r:CMap:private] =>
[_e:CComponent:private] =>
[_m:CComponent:private] =>
)
nz

Help




-








