# swoole_async_IO
---
[TOC=2,3]
---
## **1.swoole_async_readfile**
功能:异步读取文件内容<br>
函数原型:<br>
```php
swoole_async_readfile(string $filename, mixed $callback);
```
参数说明:<br>
| 参数 | 描述 |
| -------- | ----- |
| filename | 待读取的文件名 |
| callback | 读取结束的回调函数 |
回调函数原型:<br>
```php
function callback($filename, $content);
```
回调函数参数说明:<br>
| 参数 | 描述 |
| -------- | ----- |
| filename | 文件名 |
| content | 读取到的文件内容 |
说明:<br>
swoole_async_readfile会将文件内容全部复制到内存,所以不能用于大文件的读取<br>
如果要读取超大文件,请使用[swoole_async_read](#3swoole_async_read)函数<br>
swoole_async_readfile最大可读取**4M**的文件,受限于**SW_AIO_MAX_FILESIZE**宏<br>
示例:<br>
```php
swoole_async_readfile( __DIR__."/Test.txt", function($filename, $content) {
echo "$filename: $content";
});
```
## **2.swoole_async_writefile**
功能:异步写文件<br>
函数原型:<br>
```php
swoole_async_writefile(string $filename, string $content, mixed $callback);
```
参数说明:<br>
| 参数 | 描述 |
| -------- | ----- |
| filename | 待写入的文件名 |
| content | 待写入的文件内容 |
| callback | 写入结束的回调函数 |
回调函数原型:<br>
```php
function callback($filename);
```
回调函数参数说明:<br>
| 参数 | 描述 |
| -------- | ----- |
| filename | 文件名 |
说明:<br>
swoole_async_writefile最大可写入4M的文件,也可以不指定回调函数<br>
示例:<br>
```php
swoole_async_writefile('test.log', "This is a test log", function($filename) {
echo "wirte ok.\n";
});
```
## **3.swoole_async_read**
功能:异步分段读文件<br>
函数原型:<br>
```php
swoole_async_read(string $filename, mixed $callback, int $trunk_size = 8192);
```
参数说明:<br>
| 参数 | 描述 |
| -------- | ----- |
| filename | 待读取的文件名 |
| callback | 读取结束的回调函数 |
| trunk_size | 每次读取的字节数 |
回调函数原型:<br>
```php
function callback($filename, $content);
```
回调函数参数说明:<br>
| 参数 | 描述 |
| -------- | ----- |
| filename | 文件名 |
| content | 读取到的文件内容,如果为空代表文件已读完。 |
说明:<br>
swoole_async_read每次读取trunk_size个字节,读完后会自动调用callback函数<br>
在callback回调函数中,可以通过`return true/false`来控制是否继续读取文件。返回true代表继续读取,返回false代表停止读取。
示例:<br>
```php
swoole_async_read( __DIR__."/Test.txt" , function($filename, $content){
if( empty( $content ) ) {
return false;
} else {
echo "$filename: $content";
return true;
}
} , 8192 );
```
## **4.swoole_async_write**
功能:异步写文件<br>
函数原型:<br>
```php
bool swoole_async_write(string $filename, string $content, int $offset = -1, mixed $callback = NULL);
```
参数说明:<br>
| 参数 | 描述 |
| -------- | ----- |
| filename | 待写入的文件名 |
| content | 待写入的文件内容 |
| offset | 写入文件的位置 |
| callback | 写入结束的回调函数 |
回调函数原型:<br>
```php
function callback($filename, $writen);
```
回调函数参数说明:<br>
| 参数 | 描述 |
| -------- | ----- |
| filename | 文件名 |
| writen | 本次调用已经写入的字节数 |
说明:<br>
swoole_async_write过传入的offset参数来确定写入的位置,当offset为-1时表示追加写入到文件的末尾<br>
示例:<br>
```php
swoole_async_write( 'test_1.log', "This is a test log\n" , -1 , function( $filename, $writen ){
echo "$filename: write $writen byte\n";
});
```
## **5.swoole_async_dns_lookup**
功能:将域名解析为IP地址<br>
函数原型:<br>
```php
bool swoole_async_dns_lookup(string $host, mixed $callback);
```
参数说明:<br>
| 参数 | 描述 |
| -------- | ----- |
| filename | 待查询的地址 |
| callback | 查询结束的回调函数 |
回调函数原型:<br>
```php
function callback($host, $ip);
```
回调函数参数说明:<br>
| 参数 | 描述 |
| -------- | ----- |
| filename | 文件名 |
| writen | 本次调用已经写入的字节数 |
说明:<br>
当DNS查询失败时,比如域名不存在,回调函数传入的$ip为空<br>
示例:<br>
```php
swoole_async_dns_lookup("www.baidu.com", function($host, $ip){
echo "{$host} : {$ip}\n";
});
```
- swoole简介
- swoole功能概述
- 序章
- 开发必读
- 1 环境搭建
- 1.1 环境搭建
- 1.2 搭建Echo服务器
- 2 初识Swoole
- 2.1 Worker进程
- 2.2 TaskWorker进程
- 2.3 Timer定时器
- 2.4 Process进程
- 2.5 Table内存表
- 2.6 多端口监听
- 2.7 sendfile文件支持
- 2.8 SSL支持
- 2.9 热重启
- 2.10 http_server
- 附录*server配置
- 附录*server函数
- 附录*server属性
- 附录*server回调函数
- 附录*server高级特性
- 心跳检测
- 3 Swoole协议
- 3.1 EOF协议
- 3.2 固定包头协议
- 3.3 Http协议
- 3.4 WebSocket协议
- 3.5 MTQQ协议
- 内置http_server
- 内置websocket_server
- Swoole\Redis\Server
- 4 Swoole异步IO
- 4.1 AsyncIO
- 异步文件系统IO
- swoole_async_readfile
- swoole_async_writefile
- swoole_async_read
- swoole_async_write
- 5 swoole异步客户端
- ws_client
- http_client
- mysql_client
- redis_client
- tcp_client
- http2_client
- 6 swoole协程
- Swoole\Coroutine\Http\Client
- Swoole\Coroutine\MySQL
- Swoole\Coroutine\Redis
- Coroutine\PostgreSQL
- Swoole\Coroutine\Client
- Swoole\Coroutine\Socket
- Swoole\Coroutine\Channel
- Coroutine
- Swoole\Coroutine::create
- Swoole\Coroutine::resume
- Swoole\Coroutine::suspend
- Swoole\Coroutine::sleep
- Coroutine::getaddrinfo
- Coroutine::gethostbyname
- swoole_async_dns_lookup_coro
- Swoole\Coroutine::getuid
- getDefer
- setDefer
- recv
- Coroutine::stats
- Coroutine::fread
- Coroutine::fget
- Coroutine::fwrite
- Coroutine::readFIle
- Coroutine::writeFIle
- Coroutine::exec
- 7 swoole_process
- process::construct
- process::start
- process::name
- process::signal
- process::setaffinity
- process::exit
- process::kill
- process::daemon
- process->exec
- process::wait
- process::alarm
- 8 swoole定时器
- swoole_timer_tick
- swoole_timer_after
- swoole_timer_clear
- 9 swoole_event
- swoole_event_add
- swoole_event_set
- swoole_event_del
- swoole_event_wait
- swoole_event_defer
- swoole_event_write
- swoole_event_exit
- swoole提供的function
- 常见问题
- 客户端链接失败原因
- 如何设置进程数
- 如何实现异步任务
- 如何选择swoole三种模式
- php中哪些函数是阻塞的
- 是否可以共用1个redis或mysql连接
- 如何在回调函数中访问外部的变量
- 为什么不要send完后立即close
- 不同的Server程序实例间如何通信
- MySQL的连接池、异步、断线重连
- 在php-fpm或apache中使用swoole
- 学习Swoole需要掌握哪些基础知识
- 在phpinfo中有在php-m中没有
- 同步阻塞与异步非阻塞选择
- CURL发送POST请求服务器端超时
- 附录
- 预定义常量
- 内核参数调优
- php四种回调写法
- 守护进程程序常用数据结构
- swoole生命周期
- swoole_server中内存管理机制
- 使用jemalloc优化swoole内存分配性能
- Reactor、Worker、Task的关系
- Manager进程
- Swoole的实现
- Reactor线程
- 安装扩展
- swoole-worker手册
- swoole相关开源项目
- 写在后面的话
- 版本更新记录
- 4.0