Anonymous functions pre PHP 5.3.0

前端 未结 3 1756
抹茶落季
抹茶落季 2020-12-11 22:45

Is there an alternative to anonymous functions in versions of PHP previous to 5.3.0?

相关标签:
3条回答
  • 2020-12-11 23:20

    There is create_function but it generally isn't recommended. If you're using OOP, you'd be better off defining a one-off private member to use with a callback instead.

    0 讨论(0)
  • 2020-12-11 23:23

    There are two choices.

    First is to create a function, inside a function. Unfortunately, it will pollute the global namespace.

    The second choice is to use create_function.

    0 讨论(0)
  • 2020-12-11 23:26

    Yes, create_function()

    0 讨论(0)
提交回复
热议问题