PHP匿名函数的写法

Posted newmiracle宇宙

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP匿名函数的写法相关的知识,希望对你有一定的参考价值。

传统写法
<pre>
function timer () {
echo "hello world";
}
SwooleTimer::tick(2000, ‘timer‘);
</pre>
闭包写法
<pre>
SwooleTimer::tick(2000, function () {
echo "hello world";
});
</pre>


高级点的
传统写法
<pre>
$str = "hello world";
function timer () {
global $str;
echo $str;
}
SwooleTimer::tick(2000, ‘timer‘);
</pre>
闭包写法
<pre>

$str = "hello world";
SwooleTimer::tick(2000, function () use ($str) {
echo $str;
});
</pre>

以上是关于PHP匿名函数的写法的主要内容,如果未能解决你的问题,请参考以下文章

JAVA Script 三种匿名函数写法

python3学习之匿名函数

匿名函数function前面的! ~等符号作用小解

揭秘PHP匿名函数

PHP匿名函数和闭包

自执行匿名函数格式