I just upgraded to PHP4 and was doing some compatibility testing with some of my scripts, and I am finding that there is a weird problem occuring when I try to define a variable with integers involving math.
eg:
var $expires=time()+ 31536000;
will cause a parse error.
Equally strange, an array assigment with math also causes problems
eg:
var $arr = array("1"=>60*60);
I don't think this is a problem except in class definitions. Anyone know what's going on here?