3
Reply

In PHP, what is the difference between self and $this. ?

saurabh  singh

saurabh singh

9y
1.4k
0
Reply

    $this-> and self also use in class but Use self we can call member static function.

    http://www.programmerinterview.com/index.php/php-questions/php-self-vs-this/

    we can say that $this is used to reference the current object, whereas self is used to access the current class itself.