Where's the difference between self and $this-> in a PHP class or PHP method?

后端 未结 7 1283
不思量自难忘°
不思量自难忘° 2020-12-17 09:38

Where\'s the difference between self and $this-> in a PHP class or PHP method?

Example:

I\'ve seen this code recently.

7条回答
  •  一向
    一向 (楼主)
    2020-12-17 10:05

    self refers to the calling object's class. $this refers to the object itself.

提交回复
热议问题