Referring to a static variable from a static method of the same class
You have a static function:
public static function foo()
开发者_Go百科In the same class you have a static variable:
public static $uaa
How do you refer to $uaa from foo()?
Like this: self::$uaa
精彩评论