こんにちは、$this について質問があります。
class foo {
function __construct(){
$this->foo = 'bar';
}
}
class bar extends foo {
function __construct() {
$this->bar = $this->foo;
}
}
だろう
$ob = new foo();
$ob = new bar();
echo $ob->bar;
結果はbar
??
私はそうなると思ったので尋ねるだけですが、私のスクリプトの一部は私が思っていた結果にならないようです。