I wish there was a sub
keyword that would make the code below print value
on execution. There isn't though and I wonder - is there an existing way to refer to a member of a subclass?
class Main
{
static function foo()
{
echo sub::$variable;
}
}
class Sub extends Main
{
static $variable = "value";
}
Sub::foo();