15.swoole学习笔记--异步写入文件

<?php
//异步写入文件
$content="hello world";
swoole_async_writefile('2.txt',$content,function($filename){
    echo $filename;
},0);

?>

 

posted @ 2018-02-11 15:39  邹柯  阅读(163)  评论(0编辑  收藏  举报