I am trying to create a script that is created to run php 5.3 on a php 5.2 server. The script uses a lot of late static bindings, for example:
return new static($options);
What is equivalent to this in php 5.2? is it somehow new? Or it is impossible to achieve the same effect ...
thanks
EDIT:
Here is a related question. New me versus new static
Juts is trying to wrap my head around this late static binding file ...
source share