laravel文件上传

2019-01-11 08:37:00来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

        $file = Request::file('photo');//文件
        $name = input::get('name');//其他属性值
        $allowed_extensions = ["png", "jpg", "gif"];
        if ($file->getClientOriginalExtension() && !in_array($file->getClientOriginalExtension(), $allowed_extensions)) {
            return ['error' => 'You may only upload png, jpg or gif.'];
        }
        $destinationPath = 'storage/uploads/'; //public 文件夹下面建 storage/uploads 文件夹
        $extension = $file->getClientOriginalExtension();
        $fileName = str_random(10).'.'.$extension;
        $file->move($destinationPath, $fileName);
        $filePath = asset($destinationPath.$fileName);
        $info=DB::insert('insert into photo(pname,photo) VALUES (?,?)',[$name,$filePath]);//入库
          if($info){
           return Redirect('/show');
          }else{
              echo "no";
          }

 

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:Laravel 系列入门教程(四)【最适合中国人的 Laravel 教程】

下一篇:MongoDB的导入与导出