PHP Swoole异步读取、写入文件操作示例
这篇文章主要介绍了PHP Swoole异步读取、写入文件操作,结合实例形式详细分析了php使用Swoole扩展异步操作文件读写的相关实现技巧,需要的朋友可以参考下本文实例讲述了PHP Swoole异步读取、写入文件操作。分享给大家供大家参考,具体如下:
异步读取文件:swoole_async_readfile
异步写入文件:swoole_async_writefile
【示例】
读取文件 readfile.php:
<?php
$res = swoole_async_readfile(__DIR__."/1.txt", function($filename, $content) {
echo "文件名:{$filename} 内容:{$content}\n";
});
echo "读取文件\n";
var_dump($res);
执行结果:
写入文件 writefile.php:
<?php
$content = date("Ymd H:i:s")."\n";
$res = swoole_async_writefile(__DIR__."/1.txt", $content, function($filename) {
echo "追加写入{$filename}\n";
}, FILE_APPEND);
echo "写入文件\n";
var_dump($res);
执行结果:
1.txt:
(说明:以上两个函数可读取最大文件为4M,读取大文件使用 swoole_async_read、swoole_async_write)
希望本文所述对大家PHP程序设计有所帮助。
原文链接:https://blog.csdn.net/msllws/article/details/84794121
http://www.zzvips.com/article/191534.html
页:
[1]