上传文件时如何在Larvel 5.8中禁用通知

时间:2019-06-17 06:40:32

标签: laravel-5.8

1。我只是使用Froala上传文件。

但是Larave收到以下通知: 未知:在系统的临时目录的第0行“未知”中创建的文件

app\Providers\AppServiceProvider.php

    public function boot()
    {
        error_reporting(0);
    }

图片发布路线

Route::post('/upload_image',function(Request $req){
    $imageName = time().'.'.request()->file->getClientOriginalExtension();
    request()->file->move(public_path('image/upload'), $imageName);
    $path = "/image/upload".$imageName;
    return response()->json($path);
});

未知:在系统临时目录的第0行的“未知”中创建的文件 这个

0 个答案:

没有答案