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条)

报告相同问题?

悬赏问题

  • ¥500 火焰左右视图、视差(基于双目相机)
  • ¥100 set_link_state
  • ¥15 虚幻5 UE美术毛发渲染
  • ¥15 CVRP 图论 物流运输优化
  • ¥15 Tableau online 嵌入ppt失败
  • ¥100 支付宝网页转账系统不识别账号
  • ¥15 基于单片机的靶位控制系统
  • ¥15 真我手机蓝牙传输进度消息被关闭了,怎么打开?(关键词-消息通知)
  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本