Bootstrap

【PHP】static静态方法和普通方法的相互调用

author:咔咔
wechat:fangkangfk

 

Static 关键字


由于静态方法不需要通过对象即可调用,所以伪变量 $this 在静态方法中不可用。

静态属性不可以由对象通过 -> 操作符来访问。

1.普通方法调用静态方法

$this

self

parent

Index(本类)

 

2.静态方法调动普通方法

Using $this when not in object context

 

;