dongxiao_0528 2018-08-13 13:15
浏览 162
已采纳

Laravel:csv验证

How i can validate fields in csv file before uploading.

I want to get all duplicate email ids from csv file before uploading which are already available in db.

and if there is duplciate in file than upload the other except duplicate and after uploading display all duplicate email ids

    public function store(Request $request)
{
    $upload = $request->file('upload-file');
    $getPath = $upload->getRealPath();

    $file = fopen($getPath,'r');        

    while($columns = fgetcsv($file))
    {
        if($columns[0]=="")
        continue;


        $data =  $columns;


        foreach($data as $key=>$value)
        {
            $name = $data[0];
            $email = $data[1];
            $password = $data[2];

        }

        try{
            $user = User::Create(
                [
                    'name'=>$name,
                    'email'=>$email,
                    'password'=>$password,
                ]);
            $user->save();
        }
        catch(Exception $e)
        {
          if($e->getCode() == 23000)
              return 'we have found duplicate records';
          else
              $e->getCode();
        };

    }
  • 写回答

2条回答 默认 最新

  • donglu8779 2018-08-14 04:57
    关注

    So you can do like this.

          public function store(Request $request)
        {
            $upload = $request->file('upload-file');
            $getPath = $upload->getRealPath();
    
            $file = fopen($getPath,'r');        
    
            while($columns = fgetcsv($file))
            {
                if($columns[0]=="")
                continue;
    
    
                $data =  $columns;
    
    
                foreach($data as $key=>$value)
                {
                    $name = $data[0];
                    $email = $data[1];
                    $password = $data[2];
    
                }
    
                try{
                 if (!User::whereEmail($email)->exists()) {
                    $user = User::Create(
                        [
                            'name'=>$name,
                            'email'=>$email,
                            'password'=>$password,
                        ]);
                    $user->save();
                 }
                }
                catch(Exception $e)
                {
                  if($e->getCode() == 23000)
                      return 'we have found duplicate records';
                  else
                      $e->getCode();
                };
    
            }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?