dttwois6098 2012-02-08 01:50
浏览 58
已采纳

是否可以在类范围中定义匿名函数?

I'd like to assign anonymous functions to arrays in PHP inside of a class, but I keep stumbling over syntax errors.

class Stuff {
  private $_preference_defaults = array(
    'cookie'    => true,
    'session'   => true,
    'database'  => true,
    'filter'    => function($input) { return true; },
    'sanitizer' => function($input) { return $input; },
  );
};

Will throw an unexpected T_FUNCTION syntax error, and it doesn't matter whether or not the array is static. I got desperate and tried the "old" way of doing it:

class Stuff {
  private $_preference_defaults = array(
    'cookie'    => true,
    'session'   => true,
    'database'  => true,
    'filter'    => create_function('$input', 'return true;'),
    'sanitizer' => create_function('$input', 'return $input;'),
  );
};

And this led to an unexpected '(', expecting ')' syntax error. However, if I define the functions ahead of time, it does work:

class Stuff {
  function _preference_default_filter($input) {
    return true;
  }
  function _preference_default_sanitizer($input) {
    return true;
  }
  private $_preference_defaults = array(
    'cookie'    => true,
    'session'   => true,
    'database'  => true,
    'filter'    => _preference_default_filter,
    'sanitizer' => _preference_default_sanitizer,
  );
};

And then I'm able to call those functions within a class method:

function do_stuff($foo) {
  return $this->{$this->_preference_defaults['filter']}($foo);
}

Not only is this syntactically sour, in my head it wreaks of poor style and I can imagine this sort of trickery causing headaches in the future.

  1. Am I not able to create an anonymous function at class (static) scope? (I'm thinking maybe because a valid Closure object cannot be created in that context?)
  2. Is there a more... PHP... means to the same end? That is to say, is there a "better" way of assigning trivial default callbacks to array values in class scope? The final snippet I provided gets the job done for sure, but I'd prefer a solution that won't leave me asking the optometrist for a stronger prescription.
  • 写回答

3条回答 默认 最新

  • drlma06060 2012-02-08 01:54
    关注

    Am I not able to create an anonymous function at class (static) scope? (I'm thinking maybe because a valid Closure object cannot be created in that context?)

    Yes, because the initial values of class attributes should be known in parsing step, while function call and anonymous function require runtime

    Also see here to get the additional details: https://stackoverflow.com/a/9029556/251311

    And cannot get your second question :-S

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 spss统计中二分类变量和有序变量的相关性分析可以用kendall相关分析吗?
  • ¥15 拟通过pc下指令到安卓系统,如果追求响应速度,尽可能无延迟,是不是用安卓模拟器会优于实体的安卓手机?如果是,可以快多少毫秒?
  • ¥20 神经网络Sequential name=sequential, built=False
  • ¥16 Qphython 用xlrd读取excel报错
  • ¥15 单片机学习顺序问题!!
  • ¥15 ikuai客户端多拨vpn,重启总是有个别重拨不上
  • ¥20 关于#anlogic#sdram#的问题,如何解决?(关键词-performance)
  • ¥15 相敏解调 matlab
  • ¥15 求lingo代码和思路
  • ¥15 公交车和无人机协同运输