Pour la reprise, on ouvre le fichier en lecture et ecriture mais il ne faut pas réduire à la taille à 0

This commit is contained in:
Michael RICOIS 2012-04-30 12:19:53 +00:00
parent 1268d534be
commit f0e05f752c

View File

@ -429,7 +429,7 @@ if ( $opts->reprise ) {
$outFile = $path->data.'/export/'.$commande->fichierOut;
$rowReprise = 0;
$fp = fopen($outFile, 'w');
$fp = fopen($outFile, 'r+');
while (($data = fgetcsv($fp, 0, ',', '"')) !== FALSE) {
$rowReprise++;
}