可能重复:
PHP: call to an instance method via ClassName::method syntax, results in a static call ?!
class A
{
function foo()
{
if (isset($this)) {
echo '$this is defined (';
echo get_class($this);
echo ")\n";
} else {
echo "\$this is not defined.\n";
}
}
}
A::foo();
这是一个错误或功能吗?