1

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.

Example:

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

1 回答 1

7
self::method();
于 2009-11-11T00:14:29.020 回答