其他分享
首页 > 其他分享> > swoole异步io操作

swoole异步io操作

作者:互联网

1.异步写入

<?php

$content=date('Y-m-d H:i:s').PHP_EOL;

swoole_async_writefile(__DIR__.'/1.log',$content,function ($filename){
   // todo
    echo "文件名".$filename.':success'.PHP_EOL;
},FILE_APPEND);
echo "外部先执行:star".PHP_EOL;

2.异步读取

$res=swoole_async_readfile(__DIR__ . '/1.txt',function ($filename, $fileContent){
    echo "filename:".$filename.PHP_EOL;
    echo "fileContent:".$fileContent.PHP_EOL;
    echo '内部start:'.time().PHP_EOL;//后执行
});
var_dump($res);
echo '外部start:'.time().PHP_EOL; //先执行

 

lxw1844912514 发布了2382 篇原创文章 · 获赞 27 · 访问量 17万+ 私信 关注

标签:异步,PHP,fileContent,swoole,filename,EOL,io,echo
来源: https://blog.csdn.net/lxw1844912514/article/details/104065236