Init Error

This commit is contained in:
Michael RICOIS 2015-01-19 14:49:01 +00:00
parent 3a506e02dc
commit 91e35713a2

View File

@ -4,7 +4,7 @@
* 0 22 * * * /home/scores/batch/scripts/rapportsTextes.php -d >> /home/data/sources/log/rapportsTextesWeb.log
* 0 23 * * * /home/scores/batch/scripts/rapportsTextes.php -f >> /home/data/sources/log/rapportsTextesFtp.log
*/
error_reporting(E_ALL ^ E_STRICT ^ E_NOTICE ^ E_WARNING);
error_reporting(E_ALL & ~E_STRICT & ~E_NOTICE & ~E_WARNING & ~E_DEPRECATED);
ini_set('auto_detect_line_endings', true);
// Define path to application directory
@ -221,10 +221,10 @@ if (count($tabFichLigneCmd) > 0)
}
// Lecture des lignes pour insertion en surveillance score
$nbLines = 0;
$nbLinesTotal = 0;
while (($ligne = fgets($fp)) !== false)
{
$nbLines++;
$nbLinesTotal++;
$siren = substr($ligne, 0, 9);
if (!$iInsee->valideSiren($siren))
@ -241,7 +241,7 @@ if (count($tabFichLigneCmd) > 0)
}
}
echo date ('Y/m/d H:i:s') . " - Nombre de lignes du fichier '$fichierIn' : ".$nbLines."\n";
echo date ('Y/m/d H:i:s') . " - Nombre de lignes du fichier '$fichierIn' : ".$nbLinesTotal."\n";
//Retour au début du fichier
rewind($fp);
@ -254,6 +254,7 @@ if (count($tabFichLigneCmd) > 0)
while (($ligne = fgets($fp)) !== false)
{
$nbLines++;
echo date('Y/m/d H:i:s') . " - Ligne ".$nbLines."/".$nbLinesTotal.EOL;
$siren = substr($ligne, 0, 9);
$ref = trim(substr($ligne, 9, 10));