随笔分类 -  php

摘要:使用postman调试上传接口发现总是无法上传视频, 出现:error:write EPIPE 原因是因为swoole 配置文件上传大小出了问题 easyswoole 修改dev 配置文件 阅读全文
posted @ 2022-07-09 13:37 phpwyl 阅读(437) 评论(0) 推荐(0)
摘要:1.在项目目录中创建server文件夹用来存放swoole服务端文件 2.sever中代码 <?php use think\Container; $http = new Swoole\Http\Server('0.0.0.0', 9501); $http->set([ 'worker_num' => 阅读全文
posted @ 2022-06-23 23:09 phpwyl 阅读(240) 评论(0) 推荐(0)
摘要:1.进入到安装的扩展目录 cd /Applications/MAMP/bin/php/php7.3.29/include/php/ext #注意版本,可自己下载需要的版本 2.git clone https://github.com/swoole/swoole-src.git swoole 3. c 阅读全文
posted @ 2022-06-23 14:16 phpwyl 阅读(973) 评论(0) 推荐(0)