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匿名函数的写法的主要内容,如果未能解决你的问题,请参考以下文章