码迷,mamicode.com
首页 > 其他好文 > 详细

静态方法中不能使用 $this

时间:2016-07-22 10:01:21      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:

忽略了一个问题,$this 代表当前对象!! 静态方法中应该使用 类名 、 self 或者 static 关键字来代替!
    static
public function get_info($id) { var_dump($this); // NULL NULL 
       Fatal error: Using $this when not in object context in /home/apache/www/test/web/core/MY_Controller.php on line 80
}

 

静态方法中不能使用 $this

标签:

原文地址:http://www.cnblogs.com/bravehunter/p/5694001.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!