Statik sınıflar için $ this bir eşdeğer var mı?

0 Cevap php

I know it wouldn't be exactly equivalent to $this, but is there a way to reference a static class from within itself without using the name of the class itself? ( like super but for itself ) This is just a way to avoid having to refactor all the class references if the class is renamed.

Örnek:

class foo {
    function bar() {
        static_this::method();
        // instead of:
        foo::method();
    }
 }

0 Cevap