Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a class which I need to use to extend different classes (up to hundreds) depending on criteria. Is there a way in PHP to extend a class by a dynamic class name?

I assume it would require a method to specify extension with instantiation.

Ideas?

share|improve this question

3 Answers

up vote 3 down vote accepted

I don't think it's possible to dynamically extend a class (however if I'm wrong I'd love to see how it's done). Have you thought about using the Composite pattern (http://en.wikipedia.org/wiki/Composite%5Fpattern, http://devzone.zend.com/article/7)? You could dynamically composite another class (even multiple classes - this is often used as a work around to multiple inheritance) to 'inject' the methods/properties of your parent class into the child class.

share|improve this answer
Thank you very much. – Spot Oct 8 '09 at 18:36

Take a look at this, where someone else wondered the same thing and came up with a partial solution.

share|improve this answer
That is quite interesting, however what I need is the reverse. I need to dynamically specify the parent. – Spot Oct 8 '09 at 18:26

Couldn't you just use an eval?

<?php
function dynamic_class_name() {
    if(time() % 60)
        return "Class_A";
    if(time() % 60 == 0)
        return "Class_B";
}
eval(
    "class MyRealClass extends " . dynamic_class_name() . " {" . 
    # some code string here, possibly read from a file
    . "}"
);
?>
share|improve this answer
2  
I am usually very hesitant to use eval() in any kind of a production environment. – Spot Oct 19 '09 at 8:48
If you are using a webserver with a php accelerator (es. APC), eval will not be the stored in the opcode cache – fra_casula Jul 20 '12 at 10:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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