self
class myClass { static $myProperty = 42; static function myMethod() { echo self::$myProperty; } } myClass::myMethod();
Pro tip: use ```triple backticks around text``` to write in code fences