コード例 #1
0
ファイル: multilevel.php プロジェクト: siterun/content_efile
 public function myHistory()
 {
     echo "my grand father " . parent::gfAge();
     echo "my father " . parent::fAge();
     //we can also use the name of class instead of 'parent'
     echo "my " . $this->sAge();
 }