Calling closure assigned to object property directly

前端 未结 12 2080
孤街浪徒
孤街浪徒 2020-11-22 14:02

I would like to be able to call a closure that I assign to an object\'s property directly without reassigning the closure to a variable and then calling it. Is this possible

12条回答
  •  花落未央
    2020-11-22 14:49

    It seems to be possible using call_user_func().

    call_user_func($obj->callback);
    

    not elegant, though.... What @Gordon says is probably the only way to go.

提交回复
热议问题