}
    include_once "BluePHP/BluePortail/BluePortailLang.inc";
    $bpl = new BluePortailLang(array());
    $ref = $argv[1];
    $period = array("start" => $argv[2], "end" => $argv[3], "hstart" => $argv[4], "hend" => $argv[5]);
    $capteurs = $bpl->getIPTable();
    $clientId = null;
    for ($i = 0; $clientId == null && $i < count($capteurs); ++$i) {
        if ($capteurs[$i]["bluecountId"] == $ref) {
            $clientId = $capteurs[$i]["clientId"];
        }
    }
    if (!$clientId) {
        throw new Exception("Identifiant capteur {$ref} non trouvé");
    }
    $bpl->setClientId($clientId);
    include_once "BluePHP/Utils/DateOps.inc";
    $res = getTimeSlicesAsStrings($period["start"] . "000000", $period["end"] . "000000", array('second' => 0, 'minute' => 0, 'hour' => 0, 'day' => 1, 'month' => 0, 'year' => 0));
    echo "Indicateur FlowCountingProcessing\n" . "---------------------------------\n";
    include_once "BluePHP/BTopLocalServer/FlowCountingProcessing.inc";
    $fcp = new FlowCountingProcessing();
    $fcpList = $fcp->getFlowsFromCounter($ref);
    echo showCountingData($res, $period, $fcpList, $fcp);
    echo "\nIndicateur ZoneCountingProcessing\n" . "---------------------------------\n";
    include_once "BluePHP/BTopLocalServer/ZoneCounting.inc";
    $zcp = new ZoneCounting();
    $zcpList = $zcp->getZonesFromCounter($ref);
    echo showCountingData($res, $period, $zcpList, $zcp, $zcpExcluded[$clientId]);
} catch (Exception $e) {
    echo "Exception reçue : ", $e->getMessage(), "\n";
}
                            $out = "value0";
                        }
                        $str .= $cp["name"] . ";" . strftime("%d/%m/%Y", $time) . ";" . $v[$in] . ";" . $v[$out] . "\n";
                    }
                }
            }
        }
    }
    return $str;
}
try {
    if (count($argv) < 3) {
        echo "Erreur:\tArguments manquants\n" . "Usage:\tgetCSVDay.php dateDebut dateFin\n" . "\tdateDebut\tDate du début de la période au format 'YYYYMMDD'\n" . "\tdateFin\t\tDate de fin de la période au format 'YYYYMMDD'\n";
        exit(1);
    }
    include_once "BluePHP/BluePortail/BluePortailLang.inc";
    include_once "BluePHP/Utils/DateOps.inc";
    $bpl = new BluePortailLang(array());
    $refs = $bpl->getIPTable();
    $clientId = "CRTBretagne";
    $bpl->setClientId($clientId);
    include_once "BluePHP/BTopLocalServer/FlowCountingProcessing.inc";
    $period = array("start" => $argv[1], "end" => $argv[2]);
    $res = getTimeSlicesAsStrings($period["start"] . "000000", $period["end"] . "000000", array('second' => 0, 'minute' => 0, 'hour' => 0, 'day' => 1, 'month' => 0, 'year' => 0));
    echo "Porte ; Date ; Entrees ; Sorties\n";
    $cp = new FlowCountingProcessing();
    $cpList = $cp->getFlows();
    echo showCountingData($res, $cpList, $cp, 8);
} catch (Exception $e) {
    echo "Exception reçue : ", $e->getMessage(), "\n";
}