tags:

views:

57

answers:

2

You have a static function:

public static function foo()

In the same class you have a static variable:

public static $uaa

How do you refer to $uaa from foo()?

+4  A: 

Like this: self::$uaa

Daniel Egeberg