我收到了这个奇怪的错误。你会说:“为什么奇怪?你只是没有这样的属性”。不,问题是有财产。
我得到了一个错误。
// PHP Notice: Undefined property: stdClass::$roles in
$canWrite = $this->session->isLoggedIn() ? $this->page->canWrite($this->session->user->roles) : false;
这是课堂。
class User {
protected $roles;
function getRoles() {
if (!$this->roles)
{
// Get them!
}
return $this->roles;
}
}
因此,当我尝试访问此行中的属性时,将调用此方法。一切正常,但我不想增加我的错误日志。发生了什么?
UPD1
$this->user->session
是一个User
对象
function getUser() {
if (!$this->user) {
$u = new User();
// Logic
$this->user = $u;
}
return $this->user;
}
User Object
(
[roleId:protected] => 1
[roles:protected] => Array
(
[root] => Role Object
(
[id:protected] => 1
[hrefname:protected] => root
)
)
)
UPD2
所有属性都可以通过魔法访问__get()
public function __get($var) {
if ($this->__isset($var)) {
$method = 'get'.ucfirst($var);
if (method_exists($this, $method)) {
return $this->$method();
} else {
return $this->$var;
}
}
throw new Exception("Unrecognized attribute '$name'");
}
UPD3
var_dump($this->session->user)
object(User)#370 (30) {
["roles":protected]=>
array(1) {
["root"]=>
object(Role)#372 (2) {
["id":protected]=>
string(1) "1"
["hrefname":protected]=>
string(4) "root"
}
}
}
解释
在一个地方,我不小心写在尚未创建$this->session->user->id = $user->id
的地方。原来$this->session->user
如此。好吧,谢谢你,PHP。null->id
(new stdClass())->id