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_readswoole_async_write) 

发布了103 篇原创文章 · 获赞 167 · 访问量 18万+

猜你喜欢

转载自blog.csdn.net/msllws/article/details/84794121