Kohana 3 - 构造函数
我尝试使用 public function __construct() { }
但收到错误
ErrorException [严格]:正在创建 来自空值的默认对象。
这背后的原因是我使用的控制器仅对登录用户进行保护,我不想从控制器中的每个操作调用 $this->protect();
。
因此,我尝试使用调用 $this->protect();
的构造函数
I attempted to use public function __construct() { }
but got the error
ErrorException [ Strict ]: Creating
default object from empty value.
The reason behind this is that I use a controller that is protected for logged in users only, I don't want to have to call $this->protect();
from every action in the controller.
Hence my attempt to use a constructor that calls $this->protect();
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在
before()
方法中使用您登录的防护措施...Use your logged in safeguard in the
before()
method...