PHP中如何在静态方法中调用非静态方法?

class Test {

    public function func () {
        return 'hello';
    }  
      
    public static function action () {
        // 如何调用 func 方法 ?
    }
    
}
牧羊人nacy
浏览 662回答 2
2回答

明月笑刀无情

可以使用 self::func class Test { public function func () { return 'hello' ; } public static function action () { // 如何调用 func 方法 ? return self::func(); } } 但是在高版本php中已经过时了,Deprecated: Non-static method Test::func() should not be called statically in ……建议使用(new self())->func(); class Test { public function func () { return 'hello' ; } public static function action () { // 如何调用 func 方法 ? return (new self())->func(); } }

智慧大石

静态方法可以调用非静态方法,使用 self 关键词。php里,一个方法被self:: 后,它就自动转变为静态方法
打开App,查看更多内容
随时随地看视频慕课网APP