PHP 使用FastDFS 上传文件

PHP 使用FastDFS 上传文件

小污龟 1,143 2023-05-23

使用composer命令安装依赖

composer require eelly/fastdfs

使用方法

$config = [
             'host'  => 'IP地址',
             'port'  => 22122,
             'group' => [
                  'group1'
              ],
          ];
$client = new \Eelly\FastDFS\Client($config);

// 上传文件
$filePath = $client->uploadFile(文件路径 , 文件后缀);

// 删除文件【上传时返回的路径】
$client->deleteFile($filePath);