Current object This references the current class selfreference constant (const)Self:: Constants
When accessing a member variable or method in a PHP class, if the referenced variable or method is declared as const (defining a constant) or static (declaring static), then the operator must be used::, conversely, if the referenced variable or method is not declared as const or static, Then you must use the operator---. In addition, if you access the const from within the class or
When accessing a member variable or method in a PHP class, if the referenced variable or method is declared as const (defining a constant) or static (declaring static), then the operator must be used::, conversely, if the referenced variable or method is not declared as const or static, Then you must use the operator---.
In addition, if you access a const or static variable or method from within a class, you must use self-referencing, and conversely, if accessing from within a class is not a const or static variable or method, you must use a self-referencing $this.
Source: >
From for notes (Wiz)
, self, $this operator difference, mamicode.com "style=" color: #ffffff "target=" _blank ">php::,->;, self, $this operator