且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

In PHP5, what is the difference between using self and $this? When is each appropriate?

更新时间:2022-04-17 02:56:44

 

Use $this to refer to the current object. Use self to refer to the current class. In other words, use $this->member for non-static members, use self::$member for static members.