使用composer命令安装依赖
composer require eelly/fastdfs
使用方法
$config = [
'host' => 'IP地址',
'port' => 22122,
'group' => [
'group1'
],
];
$client = new \Eelly\FastDFS\Client($config);
// 上传文件
$filePath = $client->uploadFile(文件路径 , 文件后缀);
// 删除文件【上传时返回的路径】
$client->deleteFile($filePath);