What exactly is late-static binding in PHP?
|
You definitely need to read Late Static Bindings in the PHP manual. However, I'll try to give you a quick summary. Basically, it boils down to the fact that the Late static binding introduces a new use for the Those are the two basic concepts behind it. The way |
|||
|
|
|
There's a doc for that: |
|||
|
|
|
For example:
|
||||
|
|
|
As of PHP 5.3.0, PHP implements a feature called late static binding which can be used to reference the called class in the context of static inheritance. Late static binding tries to solve that limitation by introducing a keyword that references the class that was initially called at runtime. It was decided not to introduce a new keyword but rather use Lets See an Example:
A "forwarding call" is a static one that is introduced by The function |
||||
|
|
