$this和self、parent这三个关键词分别代表什么?在哪些场合下使用?

版权声明:原创请注明出处 https://blog.csdn.net/weixin_37657720/article/details/87703061

$this 当前对象

self 当前类

parent 当前类的父类

$this在当前类中使用,使用->调用属性和方法。

self也在当前类中使用,不过需要使用::调用。

parent在类中使用。

猜你喜欢

转载自blog.csdn.net/weixin_37657720/article/details/87703061