vote up 0 vote down star

I have a daemon processing quite a bit of MVC logic in the background that includes the classes it needs on demand. Sometimes, however, it comes to a point where it includes two identically named classes from different modules within one cycle. Ideally, I would like to "undeclare" a class before I include it again, I cannot find in the PHP manual however, if this is possible.

Something like this:

//first foo 
class foo(){ 

} 

//undeclare foo 
undeclare foo; 

//create new foo 
class foo(){ 

}
flag

1 Answer

vote up 7 vote down check

It is not possible to "undeclare" a class.

You should probably look into PHP's namespacing or, use a convention for naming your classes similar to

Application_Module_Class

so you would be calling

$x = new Application_Foo_Bar;

to include the Bar class from the Foo module

This also lends itself quite well to using autoload functions

link|flag
Unfortunately neither of these solutions are currently possible in my situation. – clops Oct 15 at 13:01
Do you use PHP 5.3? This would offer a solution. – powtac Oct 15 at 13:11
The application cannot be porter to PHP 5.3 in its current state. It is more than 250 Mb of code ;) – clops Oct 16 at 16:35

Your Answer

Get an OpenID
or

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