PHP:类与实例变量

时间:2016-05-24 12:17:16

标签: php oop

我知道Java和C#等编程语言中的类变量和实例变量存在差异,所以我想知道PHP是否相同。

所以我知道类变量在该类的所有实例之间共享,而实例变量只与该类的特定实例相关。

例如:

class db {
  private $host;   <--
  private $user;   <-- These will be treated as instance variables
  private $pass;   <-- as they are set by the class constructor
  private $dbname; <--

  private $connected = false; <-- Will this be treated as a class 
                                  variable? Shared among all the 
                                  instance of the db class?

  public function __construct($host, $user, $pass, $dbname) {
    $this->host = $host;
    $this->user = $user;
    $this->pass = $pass;
    $this->dbname = $dbname;
  }

  public function checkConn() {
    // some code here to change the value of $this->connected
  }

1 个答案:

答案 0 :(得分:4)

PHP有static class properties。您的代码中的所有属性都未声明为静态,因此它们都是实例属性。