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.

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

报告相同问题?

悬赏问题

  • ¥15 制裁名单20240508芯片厂商
  • ¥20 易康econgnition精度验证
  • ¥15 线程问题判断多次进入
  • ¥15 msix packaging tool打包问题
  • ¥28 微信小程序开发页面布局没问题,真机调试的时候页面布局就乱了
  • ¥15 python的qt5界面
  • ¥15 无线电能传输系统MATLAB仿真问题
  • ¥50 如何用脚本实现输入法的热键设置
  • ¥20 我想使用一些网络协议或者部分协议也行,主要想实现类似于traceroute的一定步长内的路由拓扑功能
  • ¥30 深度学习,前后端连接