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>

相关文章

1.SW的HttpServerHttpServer的本质仍然是swoole_server,其协...
1、Swoole依赖安装hiredissudowgethttps://github.comedis/h...
直接安装会提示找不到openssl/ssl.h文件即便通过Brew安装了O...
1.安装依赖yum install -y php php-pear php-devel ht...
php
下载swoole地址:https://pan.baidu.com/s/1_N3RiFtT3iHLA5x...
昨晚我躺在床上,百无聊赖地翻阅 阿兰·德波顿《身份的焦虑...