在 PHP 类或 PHP 方法中,自$this>之间的区别在哪里?
在 PHP 类或 PHP 方法中,和 之间的区别在哪里?self
$this->
例:
我最近看到了这个代码。
public static function getInstance() {
if (!self::$instance) {
self::$instance = new PDO("mysql:host='localhost';dbname='animals'", 'username', 'password');;
self::$instance-> setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
}
return self::$instance;
}
但我记得这指的是类的当前实例(对象)(也可能是错误的)。但是,有什么区别?$this->