vote up 3 vote down star
1

If I have several classes with functions that I need but want to store separately for organisation, can I extend a class to have both?

i.e. class a extends b extends c

edit: I know how to extend classes one at a time, but I'm looking for a method to instantly extend a class using multiple base classes - AFAIK you can't do this in PHP but there should be ways around it without resorting to class c extends b, class b extends a

flag

36% accept rate
Use aggregation or interfaces. Multiple inheritance doesn't exist in PHP. – sork Dec 10 '08 at 14:19
I'm looking into interfaces as I'm not a big fan of large class hierarchies. But I can't see how interfaces actually do anything? – E3 Dec 10 '08 at 14:32
Interfaces enable you to "inherit" the API only, not function bodies. It forces class a to implement methods from interface b and c. It means that if you want to inherit behavior you must aggregate member objects of classes b and c in your class a. – sork Dec 10 '08 at 14:37
I mean put private $b (instance of b) and private $c (instance of c) in your class a, if that wasn't clear enough. – sork Dec 10 '08 at 14:40

11 Answers

vote up 3 vote down check

Answering your edit :

If you really want to fake multiple inheritance, you can use the magic function __call().

This is ugly though it works from class A user's point of view :

class B {
    public function method_from_b($s) {
    	echo $s;
    }
}

class C {
    public function method_from_c($s) {
    	echo $s;
    }
}

class A extends B
{
  private $c;

  public function __construct()
  {
    $this->c = new C;
  }

  // fake "extends C" using magic function
  public function __call($method, $args)
  {
    $this->c->$method($args[0]);
  }
}


$a = new A;
$a->method_from_b("abc");
$a->method_from_c("def");

Prints "abcdef"

link|flag
I actually quite like the idea of extending the class Are there any known limitations of doing it this way? – E3 Dec 10 '08 at 18:12
No limitations as far as I know, PHP is a very permissive language for little hacks like this. :) As others have pointed out, it's not the proper OOP way of doing it though. – sork Dec 10 '08 at 18:58
vote up 0 vote down

Not knowing exactly what you're trying to achieve, I would suggest looking into the possibility of redesigning you application to use composition rather than inheritance in this case.

link|flag
vote up 1 vote down

There are plans for adding mix-ins soon, I believe.

But until then, go with the accepted answer. You can abstract that out a bit to make an "extendable" class:

class Extendable{
  private $extender=array();

  public function addExtender(Extender $obj){
    $this->extenders[] = $obj;
    $obj->setExtendee($this);
  }

  public function __call($name, $params){
    foreach($this->extenders as $extender){
       //do reflection to see if extender has this method with this argument count
       if (method_exists($extender, $name)){
          return call_user_func_array(array($extender, $name), $params);
       }
    }
  }
}


$foo = new Extendable();
$foo->addExtender(new OtherClass());
$foo->other_class_method();

Note that in this model "OtherClass" gets to 'know' about $foo. OtherClass needs to have a public function called "setExtendee" to set up this relationship. Then, if it's methods are invoked from $foo, it can access $foo internally. It will not, however, get access to any private/protected methods/variables like a real extended class would.

link|flag
vote up 0 vote down

I have read several articles discouraging inheritance in projects (as opposed to libraries/frameworks), and encouraging to program agaisnt interfaces, no against implementations.
They also advocate OO by composition: if you need the functions in class a and b, make c having members/fields of this type:

class C
{
    private $a, $b;

    public function __construct($x, $y)
    {
        $this->a = new A(42, $x);
        $this->b = new B($y);
    }

    protected function DoSomething()
    {
        $this->a->Act();
        $this->b->Do();
    }
}
link|flag
vote up 0 vote down

PHP does not allow multiple inheritance, but you can do with implementing multiple interfaces. If the implementation is "heavy", provide skeletal implementation for each interface in a seperate class. Then, you can delegate all interface class to these skeletal implementations via object containment.

link|flag
vote up 0 vote down

you are asking if multiple inheritance is possible in PHP.

the answer is: NO

Is PHP likely to implement multiple inheritance?

someone else answered this qustion on PHPBuilder.com with:

When there's peace in Jerusalem.

which I would interpret as : it's possible if many factors change but not very likely in the near future.

link|flag
vote up 1 vote down

Classes are not meant to be just collections of methods. A class is supposed to represent an abstract concept, with both state (fields) and behaviour (methods) which changes the state. Using inheritance just to get some desired behaviour sounds like bad OO design, and exactly the reason why many languages disallow multiple inheritance: in order to prevent "spaghetti inheritance", i.e. extending 3 classes because each has a method you need, and ending up with a class that inherits 100 method and 20 fields, yet only ever uses 5 of them.

link|flag
vote up 0 vote down

You cannot have a class that extends two base classes. You could not have.

Matron extends Nurse, HumanEntity

You could however have a hierarchy as follows...

Matron extends Nurse    
Consultant extends Doctor

Nurse extends HumanEntity
Doctor extends HumanEntity

HumanEntity extends DatabaseTable
DatabaseTable extends AbstractTable

and so on.

link|flag
vote up 0 vote down

PHP does not yet support multiple class inheritance, it does however support multiple interface inheritance.

See http://www.hudzilla.org/php/6_17_0.php for some examples.

link|flag
Yet? I doubt they will do it. Modern OO discourage multiple inheritance, it can be messy. – PhiLho Dec 10 '08 at 16:53
vote up 0 vote down

Yes absolutely, just try it, in the way you describe: class b extending from c, and class a extending from b.

But what you cannot do, is have class a extend both b & c

link|flag
vote up 2 vote down

No.

You should get b and c as object inside the class a if you need function of both. If you need to have multiple inheritance by inheritance you should try to seperate the concept with Interface.

Precision: class a can inherit of class b. Class b can inherit of class c. This way a will be able to access from a function of c but you must really be sure that this as a logic between all these class. Usually, it's better to try avoiding inheritance for no good reason.

link|flag
I disagree, he can do what he asks. – George Jempty Dec 10 '08 at 14:06
class a extends b extends c ? show me that. – Daok Dec 10 '08 at 14:06
a class cannot extends 2 class. He has to do what I said or what you said in your post. But not what he said. – Daok Dec 10 '08 at 14:07
George, I think you misunderstood what E3 wants to do. – sork Dec 10 '08 at 14:09
I don't think I misunderstood, he posted pseudo code, below is how you do. I'm not saying its optimum, but it does show how to do precisely what was asked. class c {} class b extends c {} class a extends b {} – George Jempty Dec 10 '08 at 14:13
show 4 more comments

Your Answer

Get an OpenID
or

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