在 PHP OOP 中使用 `$this->` 访问类成员时,为什么会出现 \"Using $this when not in object context\" 错误?

在 php oop 中使用 `$this->` 访问类成员时,为什么会出现 \ using when not in object context>` 访问类成员时,为什么会出现 "using $this when not in object context" 错误?" />

php oop 中使用 $this-> 的问题

php 中,使用 $this-> 访问类成员时,可能会出现一些问题。例如,在你提供的代码中:

class a {
  // ...
  public function ccc() {
    return b::bbb();
  }
}

class b {
  // ...
  public function bbb() {
    return $this->message['usererror'];
  }
}

当调用 a::ccc() 时,会引发以下错误:

message: using $this when not in object context

这是因为在 b::bbb() 中访问 $this->message 时,没有一个有效的对象实例。要解决此问题,应该将 ccc() 方法修改为:

public function ccc() {
  /** @var b $this */
  return $this->bbb();
}

或者创建一个 b 对象实例并将其传递给 ccc():

$b = new B();
$a->ccc($b);

值得注意的是,在 php 5 和 7 中,上述代码可能会工作,但这是错误的工作方式。在 php 8 中,这些代码将无法运行或引发错误。

此外,在 php 4 中,在实例方法中访问 $this 变量可以指向超全局变量 $globals。但是,从 php 8 开始,访问 $this 时始终引用对象实例本身。

以上就是在 PHP OOP 中使用 `$this->` 访问类成员时,为什么会出现 \"Using $this when not in object context\" 错误?的详细内容,更多请关注其它相关文章!