Why calling parent method instead self method?

后端 未结 0 598
谎友^
谎友^ 2021-01-02 14:00
class ParentClass
{
  private function foo()
  {
    echo \'foo() in ParentClass\';
  }
  public function test()
  {
    echo $this::class; // ChildClass
    $this-&         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题