Home  >  Article  >  Backend Development  >  php如何简化把函数当做参数传递

php如何简化把函数当做参数传递

WBOY
WBOYOriginal
2016-06-06 20:42:451106browse

有类似这样的两个一个函数:

<code>function fun1(callable $fn){
    return $fn();
}
</code>

其中$fn是传递进去的函数运算,我知道可以这么写:

<code>$num = 5;
$res = fun1(function () use ($num) {
    $count = 10*$num;
    return $count;
});
</code>

网上说使用HHVM可以这么写:

<code>$res = retry(5, () ==> 10*$num);
</code>

我看了下HHVM项目,感觉有些复杂,请问各位有没有简单的方式直接使用php实现这种语法。

回复内容:

有类似这样的两个一个函数:

<code>function fun1(callable $fn){
    return $fn();
}
</code>

其中$fn是传递进去的函数运算,我知道可以这么写:

<code>$num = 5;
$res = fun1(function () use ($num) {
    $count = 10*$num;
    return $count;
});
</code>

网上说使用HHVM可以这么写:

<code>$res = retry(5, () ==> 10*$num);
</code>

我看了下HHVM项目,感觉有些复杂,请问各位有没有简单的方式直接使用php实现这种语法。

php没有这方面的简写语法,你只能老老实实的写function

这么写法一开始很装b,后期就连自己都看不懂了

应该是没有的 除非你自己实现一个词法分析器之类的。。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn