PHP匿名函数的写法

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


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

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

posted @ 2019-11-17 08:28  newmiracle宇宙  阅读(366)  评论(0编辑  收藏  举报