class Foo
{
public static $my_static = 'foo';
public static function staticValue() {
return self::$my_static;
}
}
$foo = new Foo();
print $foo->staticValue() . "\n";
print $foo->my_static . "\n";
为什么静态属性无法访问,而静态资源可以使用 PHP 中的对象访问。它只能使用 '::' 访问。