致命错误:未捕获错误:不在对象上下文中时使用$ this

时间:2017-08-21 11:16:08

标签: php

class Affiliates_Shortcodes {

    private $earnings;


    public static function affiliates_user_tree() {

echo $this->earnings;

        }   
    }

获取错误:

  

致命错误:未捕获错误:不在对象上下文中时使用$ this

1 个答案:

答案 0 :(得分:1)

您的方法声明为static。您不能在静态方法中使用对象属性。见http://php.net/manual/en/language.oop5.static.php