|
I think I only have one server left that's running 4, and it's about to be retired. I don't specifically code for 5+ but I did have to make some modifications when I installed it. This kind of thing works in 4, but gets stuck in an endless loop in 5:
$i = 0; while (isset($blah[$i])) $blah[$i] = trim($blah[$i++]);
(I know you can use array_walk, but I coded that before I'd heard of that function.)
|