Error_reporting in PHP 4 and PHP 5
I migrated my site from PHP 4.4 to PHP 5.2. The error_reporting level in both cases is E_ALL. The site worked fine on PHP 4, but after switching to PHP 5 I found that one page was throwing an error. Cannot override ClassName: varName I found that the variable was indeed declared in the file. I want to know why it was working in PHP4.4 Does PHP 4 E_ALL contain "class variable override errors"?
0
a source to share