All pastes #2085870 Raw Edit

Stuff

public text v1 · immutable
#2085870 ·published 2011-09-30 10:06 UTC
rendered paste body
class Base {}
class Ext extends Base {}

$o = new Base();

$eo = new Ext($o); # build the new object based on $o, /somehow/

* * * * * * * * * * * * * * * * * * * *

class Base {
 public $x;
 public function __construct($x) {
  $this->x = $x;
 }
}

class Ext extends Base {
 public function __construct(Base $b) {
  parent::__construct($b->x);
 }
}