Open jonexyz opened 4 years ago
use Illuminate\Support\Facades\Storage; use Illuminate\Http\File;
Storage::putFile( $path ,new File($file)); //返回值为文件路径 $path 为文件目录, $file 为本地文件路径
我使用putFile()方法,文件可以上传到oss,但是接口一直没有返回值,直到504 Gateway Time-out
use Illuminate\Support\Facades\Storage; use Illuminate\Http\File;
Storage::putFile( $path ,new File($file)); //返回值为文件路径 $path 为文件目录, $file 为本地文件路径