PHP CSV League - How can I skip null value?

334 Views Asked by At

So, i'm using Laravel and PostgreSQL in my project and I wanna import the data to the database from my .csv file. I wrote this piece of code so far:

<?php
use Illuminate\Database\Seeder;
use League\Csv\Reader;

class MigracaoBaseUsuarioSeeder extends Seeder{
    public function run()
    {
        $usedData = [];
        $file = database_path().'/seeds/csv/migracao/base_usuario.csv';
        $csv = Reader::createFromPath($file);
        $csv->setOffset(1);

        $nbInsert = $csv->each(function ($row)  {
            // return false if there is no data
            if ( empty($row)) return false;
            \DB::table('users')->insert(
                array(
                    'id' => $row[0],
                    'password' => bcrypt($row[7]),
                    'is_superuser' => $row[3],
                    'username' => $row[4],
                    'email' => $row[7],
                    'is_staff' => $row[8],
                    'is_active' => $row[9],
                    'created_at' => $row[10],
                    'nome' => $row[11],
                    'cpf' => $row[12],
                    'rg' => $row[13],
                    'telefone' => $row[14],
                    'comprovante' => $row[15],
                    'tipo_usuario' => $row[16],
                    'instituicao_formadora_id' => $row[17],
                    'municipio_id' => $row[18],
                    'declaracao' => $row[19],
                    'gestor' => $row[20],
                )
            );
            return TRUE; // if return is FALSE, iteration will stop
        });
    }
}

The problem occurs only when some of these columns are empty, such as "instituicao_formadora_id".

When I run this code, I receive an error:

[PDOException]                                                               
  SQLSTATE[22P02]: Invalid text representation: 7 ERRO:  input sintax is invalid for integer: ""

In my .csv file I have something like:

info,info,info,info,,info

So, how can I skip the null values?

0

There are 0 best solutions below