Skip to content

Tag: anonymous-function

Which version of php added anonymous functions

In manual there is create_function function and you can pass result from that function to array_map, I thought that that is the only way to have something like anonymous functions and closures, but then I found that I can just put function like in javascript In which version of php I can do this? Was this alw…