微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

php – 匿名函数/关闭并使用self ::或static ::

我正在使用匿名函数,我在对象之外创建匿名函数,然后将其添加到稍后将使用__callStatic魔术函数的对象.正在添加的包含父类方法的闭包.我想知道我是否能够从关闭调用这些方法

现在我得到这个错误

EmptyObject::addMethod('open',function(){
    if (static::_hasAdapter(get_class(),__FUNCTION__))
            return self::_callAdapter(get_class(),__FUNCTION__,$details);

    echo '<p>You have mail!</p>';
});

抛出这个错误

Fatal error: Cannot access static:: when no class scope is active in

//Add the functions
EmptyObject::addMethod('open',function(){
    if (EmptyObject::_hasAdapter('EmptyObject',__FUNCTION__))
            return EmptyObject::_callAdapter('EmptyObject',$details);

    echo '<p>You have mail!</p>';
});

抛出此错误是因为该方法受到保护

Fatal error: Uncaught exception ‘BadMethodCallException’ with message ‘Method ‘_hasAdapter’ was not found in class EmptyObject’

您可以使用 Closure::bind()(PHP> = 5.4.0)
abstract class EmptyObject
{
   protected static $methods = array();

   final public static function __callStatic($name,$arguments)
   {
      return call_user_func(self::$methods[$name],$arguments);
   }

   final public static function addMethod($name,$fn)
   {
      self::$methods[$name] = Closure::bind($fn,NULL,__CLASS__);
   }

   final protected static function protectedMethod()
   {
      echo __METHOD__ . " was called" . PHP_EOL;
   }
}

现在传递给EmptyObject :: addMethod()的任何匿名函数都将在EmptyObject类的范围内运行

EmptyObject::addMethod("test",function()
{
   self::protectedMethod();
});


// will output:
// EmptyObject::protectedMethod was called

EmptyObject::test();

原文地址:https://www.jb51.cc/php/131381.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐