vote up 0 vote down star

I migrated my website from PHP 4.4 to PHP 5.2 The error_reporting level in both cases is E_ALL. On PHP 4 the site was working fine but after migrating to PHP 5 i found that one page is throwing error. Cannot redeclare ClassName:varName I found that the variable was indeed re declared in the file. I want to know that why it was working in PHP4.4 Does PHP 4 E_ALL not include "class variable redeclare errors"?

flag

80% accept rate

2 Answers

vote up 2 vote down check

I think it's not about error reporting, it's about OOP support in PHP4 and PHP5. There were lots of changes in PHP5 regarding OOP. OOP support in PHP4 was quite funny.

link|flag
vote up 0 vote down

i am going to have to agree with Zilupe on this, PHP5 brought in more standardized OOP support, to the point where you can extend a class, but you cannot redeclare it. PHP4 and OOP i never thought really existed in the same sentence without the usual LOL, ROFL etc

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.