Call static method from instance in PHP, future deprecation? Call static method from instance in PHP, future deprecation? php php

Call static method from instance in PHP, future deprecation?


From the Php documentation:

A property declared as static can not be accessed with an instantiated class object (though a static method can).

So I think it will be forward-supported for a long time.