Extend oo programlama için.
Herşeyi kullanmak bir konu, şeyleri düzgün kullanmak ayrı konu.
class a {
public $z = 1;
}
class b extends a {
public function getir()
{
echo $this->z;
}
}
$t = new $b;
$t->getir();
Konu: php extend