English 中文(简体)
使用静态类和__call?
原标题:
  • 时间:2009-01-27 02:42:09
  •  标签:

在静态调用函数时,是否可以使用__call魔术方法?

最佳回答

目前还没有,但我知道最后有一个提议中的(现在可用的)__callStaticDocs方法。否则,__call和其他__魔法方法仅可由对象实例使用。

问题回答

你必须使用其他魔术方法,__callStatic - 这仅适用于PHP > = 5.3,但实际上尚未发布。

如上所述,不存在什么魔术静态调用者。但是您可以编写以下代码:

   class First {
        public static function test1(){
            return 1;
        }
        public static function test2(){
            return 2;
        }
    }


    class Second {
        public static function test1(){
            if(func_num_args()>0){
                return func_get_args();
            }
            return 21;
        }
        public static function test2(){
            return 22;
        }
    }

    class StaticFactory {
        public static function factory($class, $method){
            if(func_num_args()>2){
                $args = func_get_args();
                array_shift($args);
                array_shift($args);
                return call_user_func_array(array($class,$method), $args);
            }else{
            return call_user_func_array(array($class,$method), array());
            }
        }
    }

    print_r(StaticFactory::factory("Second", "test1", 1, false, true));

    print_r(StaticFactory::factory("First", "test1"));




相关问题
热门标签