I'm having some trouble extending Classes in PHP. Have been Googling for a while.
$a = new A();
$a->one();
$a->two();
// something like this, or...
class A {
public $test1;
public function one() {
echo "this is A-one";
$this->two();
$parent->two();
$parent->B->two();
// ...how do i do something like this (prepare it for using in instance $a)?
}
}
class B extends A {
public $test2;
public function two($test) {
echo "this is B-two";
}
}
I'm ok at procedural PHP.
extendsworks, Fffff.class B extends Adefines a new class type,B, which has all of the features of A but also whatever new things you add toB. It doesn't makeAhave more things in it. – Amber May 3 '10 at 21:34B.$b = new B();and then$bwill have both$b->one()and$b->two()becauseBinherits theone()method fromAand also adds atwo()method forBobjects only. – Amber May 3 '10 at 21:40