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

后端 未结 7 1180
不思量自难忘°
不思量自难忘° 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:09

    $this is use to call the instance of class, where self:: is mostly used to call the constant variable within class.

    0 讨论(0)
提交回复
热议问题