我是 OOP 的新手,所以这里可能缺少一些基本的东西。在Foo
类中,该$this->user_group
变量对方法不可用bar()
。这是为什么?有没有一种比包含$DB
(和其他)每个实例化更简单的方法来让这些类相互交谈(这在我的实际代码中变得更加复杂,它有更多的类)。这是一个例子:
class Foo {
private $Auth, $user_group;
function __construct($DB) {
$this->Auth = new Auth($DB);
$this->user_group = $this->Auth->get_user_permissions_group();
// ("echo $this->user_group;" here will output the correct value)
}
public function bar() {
// ("echo $this->user_group;" here will output nothing)
return ($this->user_group > 1 ? 'cool!' : 'not cool!');
}
}
class Auth {
private $DB;
function __construct($DB) {
$this->DB = $DB;
}
public function get_user_permissions_group() {
$result = $this->DB->query('return user permissions level from DB');
return $result; // int, 1-3
}
}
$DB = new Database();
$Foo = new Foo($DB);
echo $Foo->bar();