親クラス関数を呼び出すより正しい方法は何ですか? parent::
または$this->
?
class base{
public function get_x(){
return 'x';
}
}
class child extends base{
public function __construct(){
//this?
$x = parent::get_x();
//or this?
$x = $this->get_x();
}
}
ありがとう!