vote up 1 vote down star
1

I have trying to solve the error : Fatal error: Cannot redeclare class

I have been looking everywhere and I can't find where the class was instantiated.

Is there anyway I can print debug info about the existing instance of that class.

flag

2 Answers

vote up 2 vote down check

Chances are you are importing the file that declares the class more than once. This can be symptomatic of includes/requires getting out of control so you may need to simply your structure.

One alternative approach is to use autoload to load classes to avoid this kind of problem. Another is to only use include_once or require_once. I generally prefer to use require with a simple structure.

link|flag
Php might just be getting out of control, I was already using include_once. But thanks you helped me to find where the bug was. – mnml Oct 26 at 9:54
I was using: include_once($this->PluginDir . 'class.php'); and include_once(INCLUDE_PATH."../class.php"); somewhere else. – mnml Oct 26 at 9:55
vote up 1 vote down

Yes, stupid php doesn't tell you where the class was declared. Try the following (immediately before fatal error line)

$r = new ReflectionClass("YourClassName"); echo $r->getStartLine();
link|flag
1  
that almost looked like "Yes stupid!..." – andho Oct 26 at 10:31

Your Answer

Get an OpenID
or

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