您当前的位置: 首页 > 学无止境 > 心得笔记 网站首页心得笔记
swoole学习笔记-异步文件写入
发布时间:2018-04-30 11:14:29编辑:雪饮阅读()
创建异步文件写入脚本
<?php
$content="hello world";
//最后一个参数是标志位
swoole_async_writefile('2.txt',$content,function($filename){
echo "$filename \n";
},0);
关键字词:swoole,异步,文件写入
下一篇:swoole学习笔记-异步事件