dongzhengzhong1282 2014-02-08 11:07
浏览 63
已采纳

PHP闭包作为静态类变量

I wanted to have a static closure variable in my class, so that people can change the behavior of a specific part of the code. However, I can't seem to be able to initialize it anywhere.

First I tried this:

public static $logger = function($sql) { print_r($sql); };

But apparently PHP can't handle that. Ok, so I made a static init method:

public static $logger;

static function init() {
    /* if (!Base::logger) */
    Base::logger = function($sql) { print_r($sql); };
}

And call it at the end of the file, outside class definition. But this also give me a syntax error: Parse error: syntax error, unexpected '=' in [file] on line [line]. Any hints?

  • 写回答

1条回答 默认 最新

  • douyong1886 2014-02-08 11:11
    关注

    The syntax error is right where the error message tells you it is (it would have been even easier to spot if you had given us line numbers...): a missing $-sign.

    Base::$logger = function (...)
    

    In addition to that, you migth want to use self:: instead of Base::, this ensure the code will work without any additional changes if you ever rename the class

    self::$logger = function (...)
    

    You can improve this code even further, when changing the initializer to a getter that JIT-creates the closure:

    private static $logger = NULL;
    
    public static function getLogger () {
        if (self::$logger === NULL) {
            self::$logger = function ($sql) {print_r($sql);};
        }
        return self::$logger;
    }
    

    [Edit] Based on your comment on this: the clean OOP way of being able to change $logger would be to use a setter:

    public static function setLogger ($closure) {
        self::$logger = $closure;
    }
    

    COmbining this and the getter from above ensures that you always get the value set by the setter, and, if none has been set yet, the default value. Using the setter to set the value back to NULL makes the getter create the default again, which is anoth er plus.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 全书网Java爬取数据
  • ¥15 SAP HANA SQL Script 。SUM OVER 怎么加where
  • ¥15 怎么获取红包封面的原始链接,并且获取红包封面序列号
  • ¥100 微信小程序跑脚本授权的问题
  • ¥60 为什么使用python对地震数据进行umap降维后,数据成图会出现不连续的现象
  • ¥100 房产抖音小程序苹果搜不到安卓可以付费悬赏
  • ¥15 STM32串口接收问题
  • ¥15 腾讯IOA系统怎么在文件夹里修改办公网络的连接
  • ¥15 filenotfounderror:文件是存在的,权限也给了,但还一直报错
  • ¥15 安卓qpython向ksweb服务器post文件失败