欢迎各位兄弟 发布技术文章

这里的技术是共享的

You are here

laravel框架单文件和多文件上传

laravel框架单文件和多文件上传
 1009人阅读 评论(1) 收藏 举报
 分类:

laravel中单文件上传:

实现代码:

 

    $file = Request::file('photo');//获取文件值  在此我们要在头部掉用use Illuminate\Http\Request;路由get传值
        $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";
          }

在laravel中我没有找到多文件上传

在此我自己封装了一个多文件上传希望能帮到各位学友们;

朋友们路由我没写清楚 你们自己要注意点路由问题啦!

案例:

 

[plain] view plain copy
 
 print?在CODE上查看代码片派生到我的代码片
  1. <span style="font-size:18px;">        $file = $res->file("img_name");  
  2.         foreach ($file as $key => $value) {  
  3.              if(!empty($value)){//此处防止没有多文件上传的情况  
  4.                $allowed_extensions = ["png", "jpg", "gif"];  
  5.                if ($value->getClientOriginalExtension() && !in_array($value->getClientOriginalExtension(), $allowed_extensions)) {  
  6.                   return ['error' => 'You may only upload png, jpg or gif.'];die;  
  7.                }  
  8.                $destinationPath = 'storage/uploads/'; //public 文件夹下面建 storage/uploads 文件夹  
  9.                $extension = $value->getClientOriginalExtension();  
  10.                $fileName = str_random(10).'.'.$extension;//重命名  
  11.                $value->move($destinationPath, $fileName);  
  12.                $filePath = asset($destinationPath.$fileName);  
  13.                $post['landlord_img']="storage/uploads/".$fileName;  
  14.                $list=array('img_name'=>$fileName,'house_id'=>$id);  
  15.                DB::table('img')->insert($list);                   
  16.            }  
  17.          }</span>  
来自  http://blog.csdn.net/ghost_hell/article/details/53198284
普通分类: