• 2022-06-16
    如果子类要去调用父类的某个方法(public/protected)可以使用()
    A: parent::方法名
    B: 父类名::方法名
    C: $this->方法名
    D: 方法名