Where are the builds for php posted? Are you getting an official one from a mirror? The reason I am asking is that the php build from buildapache with 4.3.11 creates a problem with the foreach function by adding an extra array index.
for instance:
prints out:
Array ( [0] => something [1] => 0 )
As you can see that poses a serious problem for certain web applications where the 1 dimension is needed.
for instance:
Code:
$arr = array('something');
foreach($arr as $ar) {
print_r($ar);
}
Array ( [0] => something [1] => 0 )
As you can see that poses a serious problem for certain web applications where the 1 dimension is needed.