参见英文答案 >
How to get the factorial value of each number in an array?1个
在一些PHP测验中,我得到了以下任务 – 我必须在以下内容中返回true:
在一些PHP测验中,我得到了以下任务 – 我必须在以下内容中返回true:
function foo($x) { return $x === $x(); } foo(__________ALLOWED_INPUT____________);
foo(function() { return $this_function; })
但是我还没有找到办法做到这一点.有可能吗?
PS:尼斯游戏(https://returntrue.win/?level=6).
您可以创建一个匿名函数,该函数返回对自身的引用:
原文链接:https://www.f2er.com/php/130753.htmlfoo($x=function()use(&$x){return$x;})
http://sandbox.onlinephpfunctions.com/code/743f72c298e81e70f13dc0892894911adfb1b072