使用匿名函数显示为未知类型
当我尝试在 PHP 中使用匿名函数(作为可用的回调)时,没有语法错误等,但是当我尝试执行回调时,它会错误地输出该函数必须命名。 gettype 返回空值。
有人有这方面的经验吗?
When I attempt to use an anonymous function in PHP (As an available callback), there are no syntactical errors or the like but when I attempt to execute the callback, it errors out outputting that the function must be named. gettype returns a null value.
Anyone have any experience with this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它 给我
object
,这是正确的,因为实现了闭包作为Closure
类型的对象。已知闭包和某些操作码缓存存在内存损坏问题。如果您正在使用其中之一,请将其禁用并查看问题是否仍然存在。
It gives
object
to me, which is correct because closures are implemented as objects of typeClosure
.There are know memory corruption issues with closures and some opcode caches. If you are using one, disable it and see if the problem persists.