679 lines
34 KiB
PHP
679 lines
34 KiB
PHP
<?php
|
|
|
|
/**
|
|
|
|
@todo fonctionnel :
|
|
|
|
* Ajouter Maporama (GPS)
|
|
* Utiliser un système avec des options -l -u -i plutôt que des espaces réservés
|
|
|
|
@todo technique :
|
|
|
|
* Faire une classe générique encapsulant CURL
|
|
* Faire des belles classes par Site Web utilisé (PJ, Insee, Normad, etc...)
|
|
* Utiliser plusieurs Referer
|
|
* Gestion des erreurs + Debug
|
|
|
|
**/
|
|
|
|
|
|
|
|
global $libelleErreur;
|
|
set_time_limit(0);
|
|
|
|
$argv=$_SERVER['argv'];
|
|
$argc=$_SERVER['argc'];
|
|
|
|
define('HOST_INSEE', 'avis-situation-sirene.insee.fr');
|
|
define('SITE_INSEE', 'http://'. HOST_INSEE .'/');
|
|
define('HOST_PJ', 'www.pagesjaunes.fr');
|
|
define('SITE_PJ', 'http://'. HOST_PJ .'/');
|
|
define('SITE_SOCIETE', 'http://www.societe.com/');
|
|
|
|
include('includes/insee.class.php');
|
|
include('includes/normad.class.php');
|
|
include('includes/fonctions.php');
|
|
/*
|
|
$normad=new Normad('YLN', '4 rue de la salle', '', '', '', '28700', 'CHAPELLE AUNAINVILLE');
|
|
$normad2=new Normad('SCI BRYGE', 'Kervegant', '', '', '', '29', 'SCAER');
|
|
$normad3=new Normad('azerty', '','Les Roches Noires','Usciapa','','20113','OLMETO');
|
|
die();
|
|
*/
|
|
function echoHeader() {
|
|
|
|
?>
|
|
<?=$argv[0]?> v0.1 Extraction d'informations INSEE en ligne de commande.
|
|
|
|
Usage: <?=$argv[0]?> <extract type> <fileIn> <fileInFmt> <fileOut> <fileOutFmt>
|
|
|
|
Where <extract type> is :
|
|
id siren.tm.fr : Fiche d'identite INSEE (établissement+entreprise)
|
|
lst siren.tm.fr : Liste des etablissements du SIREN (+infos entreprise)
|
|
rncs societe.com : Informations du RNCS
|
|
pj pagesjaunes.fr : Données des pages jaunes
|
|
coface cofacerating.fr : Coface
|
|
|
|
Where <fileInFmt> is :
|
|
csv Fichier IN au format CSV (; ou ,) SIREN;NIC;REF
|
|
plat Fichier IN au format plat (blancs significatifs) SIREN_____NIC__REF______________
|
|
|
|
Where <fileOutFmt> is : csv / todo
|
|
|
|
Le fichier en entrée doit être au format <fileInFmt> et contenir le SIREN en première colonne.
|
|
|
|
<?php
|
|
}
|
|
|
|
$insee=&new Insee();
|
|
if (!in_array($argv[1], array('id', 'lst', 'rncs', 'pj', 'coface'))) {echoHeader();die("Erreur : Type d'extraction inexistante !\r\n");}
|
|
|
|
$fileIN=@file($argv[2]);
|
|
if ($fileIN==false) {echoHeader();die('Erreur : Impossible de lire le fichier "'. $argv[2] .'" !');}
|
|
$nbLignes=sizeof($fileIN);
|
|
|
|
if (!in_array($argv[3], array('csv', 'plat'))) {echoHeader();die('Erreur : Format IN inexistant !');}
|
|
|
|
$fpOUT=@fopen($argv[4], 'w');
|
|
if ($fpOUT==false) {echoHeader();die('Erreur : Impossible d\'ouvrir le fichier "'. $argv[3] .'" !');}
|
|
|
|
if (!in_array($argv[5], array('csv', 'so2000'))) {echoHeader();die('Erreur : Format OUT inexistant !');}
|
|
$fileOutFmt=$argv[5];
|
|
|
|
set_time_limit(0);
|
|
|
|
if ($argv[1]=='id' || $argv[1]=='lst')
|
|
{ $str= 'Date et Heure requête;'.
|
|
'Libellé si Erreur;'.
|
|
// Etablissement
|
|
'SIRET;'.
|
|
'Etablissement actif;'.
|
|
'Date Absence Activite;'.
|
|
'Type d\'établissement;'.
|
|
'Date MAJ données établissement;'.
|
|
'Date création établissement;'.
|
|
'Raison Sociale;'.
|
|
'Enseigne établissement;'.
|
|
'NAF établissement;'.
|
|
'Libellé NAF établissement;'.
|
|
'Adresse établissement Ligne 1;'.
|
|
'Adresse établissement Ligne 2;'.
|
|
'Adresse établissement Ligne 3;'.
|
|
'Etat Juridique Entreprise;'.
|
|
'Date Etat Juridique Entreprise;'.
|
|
// Entreprise
|
|
'Date création entreprise;'.
|
|
'Raison Sociale;'.
|
|
'Sigle entreprise;'.
|
|
'NAF entreprise;'.
|
|
'Libellé NAF entreprise;'.
|
|
'Forme Juridique entreprise;'.
|
|
'Libellé Forme Juridique entreprise;'.
|
|
'Nombre d\'établissement Actifs;';
|
|
fwrite($fpOUT, $str."\r\n");
|
|
}
|
|
|
|
foreach ($fileIN as $key => $ligne) {
|
|
$strPJ='';
|
|
if ($argv[3]=='csv'){
|
|
$tabLigne=explode(';', $ligne);
|
|
$sirenLu=substr(trim($tabLigne[0]), 0, 9);
|
|
$nicLu=substr(trim($tabLigne[1]), 0, 5);
|
|
$ref=substr(trim($tabLigne[2]), 0, 30);
|
|
}else{
|
|
$sirenLu=substr($ligne, 0, 9);
|
|
$nicLu=trim(substr($ligne, 9, 5));
|
|
$ref=substr($ligne, 14, 30);
|
|
}
|
|
$invalide=false;
|
|
if (valideSiren($sirenLu)==false) {
|
|
$libelleErreur='SIREN invalide';
|
|
$invalide=true;
|
|
}
|
|
if ( $nicLu<>'' && valideSiren($sirenLu, $nicLu)==false) {
|
|
$libelleErreur='SIRET invalide';
|
|
$invalide=true;
|
|
}
|
|
if ($invalide==true)
|
|
{
|
|
$siret=$sirenLu.$nicLu;
|
|
$str=date('d/m/Y à H:i:s') .';'. $libelleErreur .';'. $siret .';;;;;;;;;;;;;;;;;;;;;;;';
|
|
fwrite($fpOUT, $str."\r\n");
|
|
$num=$key+1;
|
|
echo "Ligne $num/$nbLignes : Question=$sirenLu$nicLu Retour=$siret $libelleErreur\r\n";
|
|
flush();
|
|
} else {
|
|
/** Paramètre de requête "option" à l'insee :
|
|
** 1: Fiche du siège + Données entreprises
|
|
** 2: Tous les établissements de l'entreprise
|
|
** 3: Un établissement particulier
|
|
** 4: Département
|
|
**/
|
|
if ($nicLu<>'') $option=3;
|
|
else $option=1;
|
|
|
|
$libelleErreur='Erreur SCRIPT Inconnue';
|
|
$tabInfoEtab=array();
|
|
$tabInfoEntrep=array();
|
|
|
|
/** Etape de connexion au site de l'INSEE pour simuler correctement un utilisateur WEB
|
|
**/
|
|
$response1=getUrl(SITE_INSEE);
|
|
$response=getUrl(SITE_INSEE .'REPERTOIRE/Interrogation/frame_interrogation.asp?ACTION=nouvelle&Niveau=siren', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'SIRENET_Script/Accueil/script_page_accueil.asp');
|
|
|
|
$response=getUrl(SITE_INSEE .'SIRENET_Script/Interrogation/script_recherche_menu.asp?niveau=siren', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Interrogation/frame_interrogation.asp?ACTION=nouvelle&Niveau=siren');
|
|
$response=getUrl(SITE_INSEE .'SIRENET_Script/Interrogation/script_recherche_barre_haut.asp?niveau=siren', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Interrogation/frame_interrogation.asp?ACTION=nouvelle&Niveau=siren');
|
|
|
|
$response=getUrl(SITE_INSEE .'REPERTOIRE/Interrogation/Interrogation_haut.asp?grille=siren&action=nouvelle', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Interrogation/frame_interrogation.asp?ACTION=nouvelle&Niveau=siren');
|
|
$response=getUrl(SITE_INSEE .'REPERTOIRE/Interrogation/Interrogation_principal.asp?grille=siren&action=nouvelle', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Interrogation/frame_interrogation.asp?ACTION=nouvelle&Niveau=siren');
|
|
$response=getUrl(SITE_INSEE .'REPERTOIRE/Interrogation/Interrogation_bas.asp?grille=siren&action=nouvelle', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Interrogation/frame_interrogation.asp?ACTION=nouvelle&Niveau=siren');
|
|
|
|
$response=getUrl(SITE_INSEE .'REPERTOIRE/Interrogation/Interrogation_haut.asp?grille=siren&action=nouvelle', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Interrogation/Interrogation_principal.asp?grille=siren&action=nouvelle');
|
|
$response=getUrl(SITE_INSEE .'REPERTOIRE/Interrogation/Interrogation_bas.asp?grille=siren&action=nouvelle', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Interrogation/Interrogation_principal.asp?grille=siren&action=nouvelle');
|
|
//sleep(1);
|
|
|
|
if ($argv[1]=='lst') //Faire une boucle de recherche de tous les établissement et y inclure le reste du traitement
|
|
{
|
|
// Requête d'interrogation
|
|
$postData=array(
|
|
'siren'=>$sirenLu,
|
|
'option'=>2,
|
|
'nic'=>'',
|
|
'dep'=>'',
|
|
'listeDep'=>'');
|
|
|
|
$response=getUrl(SITE_INSEE .'REPERTOIRE/Interrogation/Interrogation_principal.asp?action=valider&grille=siren&waitframe=false', $response1["header"]["Set-Cookie"], $postData, SITE_INSEE .'REPERTOIRE/Interrogation/Interrogation_principal.asp?grille=siren&action=nouvelle');
|
|
$action='nouveau';
|
|
$referer=SITE_INSEE .'REPERTOIRE/Interrogation/Interrogation_principal.asp?action=valider&grille=siren&waitframe=false';
|
|
$nbRepTot=$pageCour=$nbTotPage=$nbRepParPage=$numEtab=0;
|
|
$tabInfoEtab=array();
|
|
|
|
while(true)
|
|
{
|
|
$responseQ=getUrl(SITE_INSEE .'REPERTOIRE/reponse/question.asp?action='.$action, $response1["header"]["Set-Cookie"], '', $referer);
|
|
if ($responseQ['code']==302)
|
|
{
|
|
//$libelleErreur='Erreur INSEE inconnue 1';
|
|
|
|
// Siren Invalide ou autre erreur non répertoriée !
|
|
$header=$responseQ['header'];
|
|
if (trim($header['Location'])=='/REPERTOIRE/Reponse/Frame_Reponse.asp?dest=erreur')
|
|
{
|
|
$responseQ=getUrl(SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?dest=erreur', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Interrogation/Interrogation_principal.asp?action=valider&grille=siren&waitframe=false');
|
|
$responseErreur=getUrl(SITE_INSEE .'REPERTOIRE/Reponse/Erreur_principal.asp', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?dest=erreur',true);
|
|
$pos=strpos($responseErreur['body'], '<td valign=top bgcolor="#FFCC33"><font face=Arial size=2><b>');
|
|
if ($pos>0){
|
|
$posFin=strpos($responseErreur['body'], '</b></font></td>', $pos+60);
|
|
$libelleErreur=trim(substr($responseErreur['body'], $pos+60, $posFin-($pos+60)));
|
|
} else
|
|
$libelleErreur='Erreur INSEE inconnue';
|
|
}
|
|
|
|
// On déroule les URLs d'appels liste des établissements
|
|
$responseQ=getUrl(SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?dest=liste', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Interrogation/Interrogation_principal.asp?action=valider&grille=siren&waitframe=false');
|
|
//sleep(1);
|
|
// Frames réponse niveau Etab
|
|
$responseQ=getUrl(SITE_INSEE .'SIRENET_Script/Interrogation/script_recherche_menu.asp?niveau=siren', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?dest=liste');
|
|
$responseQ=getUrl(SITE_INSEE .'SIRENET_Script/Interrogation/script_recherche_barre_haut.asp?niveau=siren', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?dest=liste');
|
|
$responseQ=getUrl(SITE_INSEE .'REPERTOIRE/Reponse/Reponse_haut.asp', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?dest=liste');
|
|
$responseListe=getUrl(SITE_INSEE .'REPERTOIRE/Reponse/Liste_principal.asp', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?dest=liste', true);
|
|
$responseQ=getUrl(SITE_INSEE .'REPERTOIRE/Reponse/Liste_bas.asp', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?dest=liste');
|
|
$responseListe=$responseListe['body'];
|
|
|
|
$pos=strpos($responseListe, 'Nombre total de réponses : '."\r\n\t\t\t".'<font face="Arial" size="2"><b>');
|
|
if ($pos>0) {
|
|
$posFin=strpos($responseListe, '</b></font>', $pos+73);
|
|
$nbRepTot=trim(substr($responseListe, $pos+73, $posFin-($pos+73)));
|
|
}
|
|
$pos=strpos($responseListe, ' - Affichage de la page '."\r\n\t\t\t".'<font face="Arial" size="2"><b>');
|
|
if ($pos>0) {
|
|
$posFin=strpos($responseListe, ' - </b></font>', $pos+75);
|
|
$strPages=trim(substr($responseListe, $pos+75, $posFin-($pos+75)));
|
|
$tabPages=explode(' / ', $strPages);
|
|
$pageCour=$tabPages[0];
|
|
$nbTotPage=$tabPages[1];
|
|
}
|
|
$pos=strpos($responseListe, ' - </b></font>'."\r\n\t\t\t".'<font face="Arial" size="2"><b>');
|
|
if ($pos>0) {
|
|
$posFin=strpos($responseListe, '</b></font>', $pos+60);
|
|
$nbRepParPage=trim(substr($responseListe, $pos+60, $posFin-($pos+60)));
|
|
}
|
|
|
|
/* TODO = Récupérer les infos étab + entrep pour chaque ligne du tableau !!!*
|
|
*/
|
|
if ($libelleErreur=='Erreur SCRIPT Inconnue')
|
|
$libelleErreur='';
|
|
for ($i=1;$i<11; $i++)
|
|
{
|
|
if ($numEtab==$nbRepTot)
|
|
break; // Il n'y a pas plus d'établissement à récupérer ! On sort...
|
|
|
|
$responseQ=getUrl(SITE_INSEE .'REPERTOIRE/reponse/question.asp?action=detail&numtableau='.$i, $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Reponse/Liste_principal.asp');
|
|
if ($responseQ['code']==302)
|
|
{
|
|
// Siren Invalide ou autre erreur non répertoriée !
|
|
$header=$responseQ['header'];
|
|
if (trim($header['Location'])=='/REPERTOIRE/Reponse/Frame_Reponse.asp?origine=liste&dest=detail&niveau=siege&numtableau='.$i)
|
|
{
|
|
// On déroule les URLs d'appels fiche siège
|
|
$responseQ=getUrl(SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?dest=detail&niveau=siege&numtableau='.$i, $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Interrogation/Interrogation_principal.asp?action=valider&grille=siren&waitframe=false');
|
|
//sleep(1);
|
|
// Frames réponse niveau Etab
|
|
$responseQ=getUrl(SITE_INSEE .'SIRENET_Script/Interrogation/script_recherche_menu.asp?niveau=siren', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?dest=detail&niveau=siege');
|
|
$responseQ=getUrl(SITE_INSEE .'SIRENET_Script/Interrogation/script_recherche_barre_haut.asp?niveau=siren', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?dest=detail&niveau=siege');
|
|
$responseQ=getUrl(SITE_INSEE .'REPERTOIRE/Reponse/Reponse_haut.asp', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?dest=detail&niveau=siege');
|
|
$responseEtab=getUrl(SITE_INSEE .'REPERTOIRE/Reponse/Detail_principal.asp?niveau=siege&numtableau='.$i.'&origine=liste', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?origine=liste&dest=detail&niveau=siege&numtableau='.$i, true);
|
|
$responseQ=getUrl(SITE_INSEE .'REPERTOIRE/Reponse/Detail_bas.asp?niveau=siege&numtableau='.$i.'&origine=liste', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?origine=liste&dest=detail&niveau=siege&numtableau='.$i);
|
|
$responseEtab=$responseEtab['body'];
|
|
|
|
// Récupération de la fiche entreprise INSEE
|
|
$responseQ=getUrl(SITE_INSEE .'REPERTOIRE/reponse/frame_reponse.asp?niveau=entreprise&dest=detail&origine=liste&numtableau='.$i, $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Reponse/Detail_principal.asp?niveau=siege&numtableau='.$i.'&origine=liste');
|
|
$responseQ=getUrl(SITE_INSEE .'SIRENET_Script/Interrogation/script_recherche_menu.asp?niveau=siren', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/reponse/frame_reponse.asp?niveau=entreprise&dest=detail&origine=liste&numtableau='.$i);
|
|
$responseQ=getUrl(SITE_INSEE .'SIRENET_Script/Interrogation/script_recherche_barre_haut.asp?niveau=siren', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?niveau=entreprise&dest=detail&origine=liste&numtableau='.$i);
|
|
$responseQ=getUrl(SITE_INSEE .'REPERTOIRE/Reponse/Reponse_haut.asp', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/reponse/frame_reponse.asp?niveau=entreprise&dest=detail&origine=liste&numtableau='.$i);
|
|
$responseEntreprise=getUrl(SITE_INSEE .'REPERTOIRE/Reponse/Detail_principal.asp?niveau=entreprise&numtableau='.$i.'&origine=liste', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/reponse/Frame_Reponse.asp?niveau=entreprise&dest=detail&origine=liste&numtableau='.$i, true);
|
|
$responseQ=getUrl(SITE_INSEE .'REPERTOIRE/Reponse/Detail_bas.asp?niveau=entreprise&numtableau='.$i.'&origine=liste', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/reponse/Frame_Reponse.asp?niveau=entreprise&dest=detail&origine=liste&numtableau='.$i);
|
|
$responseEntreprise=$responseEntreprise['body'];
|
|
}
|
|
elseif (trim($header['Location'])=='/REPERTOIRE/Reponse/Frame_Reponse.asp?origine=liste&dest=detail&niveau=etablissement&numtableau='.$i)
|
|
{
|
|
// On déroule les URLs d'appels établissement
|
|
$responseQ=getUrl(SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?dest=detail&niveau=etablissement&numtableau='.$i, $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Interrogation/Interrogation_principal.asp?action=valider&grille=siren&waitframe=false');
|
|
//sleep(1);
|
|
// Frames réponse niveau Etab
|
|
$responseQ=getUrl(SITE_INSEE .'SIRENET_Script/Interrogation/script_recherche_menu.asp?niveau=siren', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?dest=detail&niveau=etablissement');
|
|
$responseQ=getUrl(SITE_INSEE .'SIRENET_Script/Interrogation/script_recherche_barre_haut.asp?niveau=siren', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?dest=detail&niveau=etablissement');
|
|
$responseQ=getUrl(SITE_INSEE .'REPERTOIRE/Reponse/Reponse_haut.asp', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?dest=detail&niveau=etablissement');
|
|
$responseEtab=getUrl(SITE_INSEE .'REPERTOIRE/Reponse/Detail_principal.asp?niveau=etablissement&numtableau='.$i.'&origine=liste', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?origine=liste&dest=detail&niveau=etablissement&numtableau='.$i, true);
|
|
$responseQ=getUrl(SITE_INSEE .'REPERTOIRE/Reponse/Detail_bas.asp?niveau=etablissement&numtableau='.$i.'&origine=liste', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?origine=liste&dest=detail&niveau=etablissement&numtableau='.$i);
|
|
$responseEtab=$responseEtab['body'];
|
|
}
|
|
|
|
$tabInfoEtab=getDataEtablissement($responseEtab);
|
|
$tabInfoEntrep=getDataEntreprise($responseEntreprise);
|
|
|
|
if ($libelleErreur<>'' && $tabInfoEtab['siret'] =='') $siret=$sirenLu . $nicLu;
|
|
else $siret=$tabInfoEtab['siret'];
|
|
|
|
$str= date('d/m/Y à H:i:s') .';'.
|
|
$libelleErreur .';'.
|
|
// Siège
|
|
$siret .';'.
|
|
$tabInfoEtab['active'] .';'.
|
|
$tabInfoEtab['dateAbsActivite'] .';'.
|
|
$tabInfoEtab['typeEtablissement'] .';'.
|
|
$tabInfoEtab['dateMAJ'] .';'.
|
|
$tabInfoEtab['dateCreation'] .';'.
|
|
$tabInfoEtab['raisonSociale'] .';'.
|
|
$tabInfoEtab['Enseigne'] .';'.
|
|
$tabInfoEtab['NafCode'] .';'.
|
|
$tabInfoEtab['NafLib'] .';'.
|
|
$tabInfoEtab['AdresseLigne1'] .';'.
|
|
$tabInfoEtab['AdresseLigne2'] .';'.
|
|
$tabInfoEtab['AdresseLigne3'] .';'.
|
|
$tabInfoEtab['etatJuridique'] .';'.
|
|
$tabInfoEtab['dateEtatJuridique'] .';'.
|
|
// Entreprise
|
|
$tabInfoEntrep['dateCreationEntrep'] .';'.
|
|
$tabInfoEntrep['raisonSocialeEntrep'] .';'.
|
|
$tabInfoEntrep['sigle'] .';'.
|
|
$tabInfoEntrep['NafCodeEntrep'] .';'.
|
|
$tabInfoEntrep['NafLibEntrep'] .';'.
|
|
$tabInfoEntrep['FJCodeEntrep'] .';'.
|
|
$tabInfoEntrep['FJLibEntrep'] .';'.
|
|
$tabInfoEntrep['nbEtabActifs'] .';';
|
|
|
|
fwrite($fpOUT, $str."\r\n");
|
|
$numEtab++;
|
|
$num=$key+1;
|
|
$typeEtablissement=$tabInfoEtab['typeEtablissement'];
|
|
echo "Question $num/$nbLignes : Demande=$sirenLu$nicLu Etablissement $numEtab/$nbRepTot $typeEtablissement=$siret $libelleErreur\r\n";
|
|
flush();
|
|
sleep(1);
|
|
|
|
}//end for
|
|
}//end if
|
|
if ($pageCour==$nbTotPage) {
|
|
// On sort de la boucle de passage à la page de liste suivante car il n'y a plus d'autres pages
|
|
break;
|
|
} else {
|
|
$action='listeplus';
|
|
$referer=SITE_INSEE .'REPERTOIRE/Reponse/Liste_principal.asp';
|
|
}
|
|
}
|
|
} //Fin While
|
|
} // Fin de la boucle option 'lst'
|
|
|
|
|
|
if ($argv[1]=='id' || $argv[1]=='pj')
|
|
{
|
|
// $retour=$bil->getFicheIdentite($siren, $nic, 'c', '', $ref, $fileOutFmt);
|
|
//elseif (substr($argv[1],0,2)=='sv')
|
|
//$retour=$bil->getSolvaBil($siren, substr($argv[1],2,1), 450, $ref, '');
|
|
|
|
// Requête d'interrogation
|
|
$postData=array('siren'=>$sirenLu,
|
|
'option'=>$option,
|
|
'nic'=>$nicLu,
|
|
'dep'=>'',
|
|
'listeDep'=>'');
|
|
|
|
$response=getUrl(SITE_INSEE .'REPERTOIRE/Interrogation/Interrogation_principal.asp?action=valider&grille=siren&waitframe=false', $response1["header"]["Set-Cookie"], $postData, SITE_INSEE .'REPERTOIRE/Interrogation/Interrogation_principal.asp?grille=siren&action=nouvelle');
|
|
$responseQ=getUrl(SITE_INSEE .'REPERTOIRE/reponse/question.asp?action=nouveau', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Interrogation/Interrogation_principal.asp?action=valider&grille=siren&waitframe=false');
|
|
if ($responseQ['code']==302)
|
|
{
|
|
//$libelleErreur='Erreur INSEE inconnue 1';
|
|
|
|
// Siren Invalide ou autre erreur non répertoriée !
|
|
$header=$responseQ['header'];
|
|
if (trim($header['Location'])=='/REPERTOIRE/Reponse/Frame_Reponse.asp?dest=erreur')
|
|
{
|
|
$responseQ=getUrl(SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?dest=erreur', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Interrogation/Interrogation_principal.asp?action=valider&grille=siren&waitframe=false');
|
|
$responseErreur=getUrl(SITE_INSEE .'REPERTOIRE/Reponse/Erreur_principal.asp', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?dest=erreur',true);
|
|
$pos=strpos($responseErreur['body'], '<td valign=top bgcolor="#FFCC33"><font face=Arial size=2><b>');
|
|
if ($pos>0){
|
|
$posFin=strpos($responseErreur['body'], '</b></font></td>', $pos+60);
|
|
$libelleErreur=trim(substr($responseErreur['body'], $pos+60, $posFin-($pos+60)));
|
|
} else
|
|
$libelleErreur='Erreur INSEE inconnue';
|
|
}
|
|
else
|
|
{ if (trim($header['Location'])=='/REPERTOIRE/Reponse/Frame_Reponse.asp?dest=detail&niveau=siege')
|
|
// L'établissement demandé est un siège !
|
|
$option=1;
|
|
|
|
if ($option==3)
|
|
{
|
|
// On déroule les URLs d'appels établissement
|
|
$responseQ=getUrl(SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?dest=detail&niveau=etablissement', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Interrogation/Interrogation_principal.asp?action=valider&grille=siren&waitframe=false');
|
|
//sleep(1);
|
|
// Frames réponse niveau Etab
|
|
$responseQ=getUrl(SITE_INSEE .'SIRENET_Script/Interrogation/script_recherche_menu.asp?niveau=siren', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?dest=detail&niveau=etablissement');
|
|
$responseQ=getUrl(SITE_INSEE .'SIRENET_Script/Interrogation/script_recherche_barre_haut.asp?niveau=siren', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?dest=detail&niveau=etablissement');
|
|
$responseQ=getUrl(SITE_INSEE .'REPERTOIRE/Reponse/Reponse_haut.asp', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?dest=detail&niveau=etablissement');
|
|
$responseEtab=getUrl(SITE_INSEE .'REPERTOIRE/Reponse/Detail_principal.asp?niveau=etablissement', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?dest=detail&niveau=etablissement', true);
|
|
$responseQ=getUrl(SITE_INSEE .'REPERTOIRE/Reponse/Detail_bas.asp?niveau=etablissement', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?dest=detail&niveau=etablissement');
|
|
$responseEtab=$responseEtab['body'];
|
|
// On recherche si on est bien sur un fiche établissement
|
|
$pos=strpos($responseEtab, '<table cols="2" width="100%"><tr><td bgcolor="#FFCC33" align="left"><font face="Arial" size="2"><B>Fiche Etablissement</B>');
|
|
if ($pos<1)
|
|
$libelleErreur='Erreur SCRIPT Fiche Etablissement non trouvée';
|
|
else
|
|
$libelleErreur='';
|
|
$responseSiege=$responseEtab;
|
|
}
|
|
else
|
|
{
|
|
// On déroule les URLs d'appels Sièges
|
|
$responseQ=getUrl(SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?dest=detail&niveau=siege', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Interrogation/Interrogation_principal.asp?action=valider&grille=siren&waitframe=false');
|
|
//sleep(1);
|
|
// Frames réponse niveau sièges
|
|
$responseQ=getUrl(SITE_INSEE .'SIRENET_Script/Interrogation/script_recherche_menu.asp?niveau=siren', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?dest=detail&niveau=siege');
|
|
$responseQ=getUrl(SITE_INSEE .'SIRENET_Script/Interrogation/script_recherche_barre_haut.asp?niveau=siren', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?dest=detail&niveau=siege');
|
|
$responseQ=getUrl(SITE_INSEE .'REPERTOIRE/Reponse/Reponse_haut.asp', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?dest=detail&niveau=siege');
|
|
$responseSiege=getUrl(SITE_INSEE .'REPERTOIRE/Reponse/Detail_principal.asp?niveau=siege', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?dest=detail&niveau=siege', true);
|
|
$responseQ=getUrl(SITE_INSEE .'REPERTOIRE/Reponse/Detail_bas.asp?niveau=siege', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?dest=detail&niveau=siege');
|
|
$responseSiege=$responseSiege['body'];//strip_tags(html_entity_decode(), '<td>');
|
|
// On recherche si on est bien sur un fiche siège
|
|
$pos=strpos($responseSiege, '<table cols="2" width="100%"><tr><td bgcolor="#FFCC33" align="left"><font face="Arial" size="2"><B>Fiche siège</B>');
|
|
if ($pos<1)
|
|
$libelleErreur='Erreur SCRIPT Fiche Siège non trouvée';
|
|
else
|
|
$libelleErreur='';
|
|
}
|
|
|
|
// Niveau entreprise
|
|
$responseQ=getUrl(SITE_INSEE .'REPERTOIRE/reponse/frame_reponse.asp?niveau=entreprise&dest=detail', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Reponse/Detail_principal.asp?niveau=siege');
|
|
|
|
$responseQ=getUrl(SITE_INSEE .'SIRENET_Script/Interrogation/script_recherche_menu.asp?niveau=siren', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/reponse/frame_reponse.asp?niveau=entreprise&dest=detail');
|
|
$responseQ=getUrl(SITE_INSEE .'SIRENET_Script/Interrogation/script_recherche_barre_haut.asp?niveau=siren', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?dest=detail&niveau=entreprise');
|
|
$responseQ=getUrl(SITE_INSEE .'REPERTOIRE/Reponse/Reponse_haut.asp', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/reponse/frame_reponse.asp?niveau=entreprise&dest=detail');
|
|
$responseEntreprise=getUrl(SITE_INSEE .'REPERTOIRE/Reponse/Detail_principal.asp?niveau=entreprise', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/reponse/frame_reponse.asp?niveau=entreprise&dest=detail', true);
|
|
$responseQ=getUrl(SITE_INSEE .'REPERTOIRE/Reponse/Detail_bas.asp?niveau=entreprise', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/reponse/frame_reponse.asp?niveau=entreprise&dest=detail');
|
|
$responseEntreprise=$responseEntreprise['body'];
|
|
$pos=strpos($responseEntreprise, '<table cols="2" width="100%"><tr><td bgcolor="#FFCC33" align="left"><font face="Arial" size="2"><B>Fiche Entreprise</B>');
|
|
if ($pos<1) {
|
|
$libelleErreur='Erreur SCRIPT Fiche Entreprise non trouvée';
|
|
}
|
|
|
|
/** Recherche des données établissement
|
|
**/
|
|
$tabInfoEtab=getDataEtablissement($responseSiege);
|
|
|
|
/** Recherche des données entreprise
|
|
**/
|
|
$tabInfoEntrep=getDataEntreprise($responseEntreprise);
|
|
|
|
}
|
|
}
|
|
if ($argv[1]=='pj' && $libelleErreur=='')
|
|
{
|
|
//echo "pj.fr\r\n";
|
|
/** Etape de connexion au site de l'INSEE pour simuler correctement un utilisateur WEB
|
|
**/
|
|
/*<form name="form" target="_self" method="POST" action="pj.cgi" onSubmit="return check_form_PJ(this);">
|
|
<input tabindex=6 name="JF_INSCRIPTIONS_REQ" src="files/images/rechercher_new.gif" border=0 alt="Lancer la recherche" type="image">
|
|
|
|
*/
|
|
$raisonSociale=$tabInfoEtab['raisonSociale'];
|
|
if (trim($tabInfoEtab['AdresseLigne3'])=='') {
|
|
$tabCPVille=explode('/', $tabInfoEtab['AdresseLigne2']);
|
|
if ( (int)($tabCPVille[0])>0 and (int)($tabCPVille[0])<99999)
|
|
{
|
|
$departement=$tabCPVille[0];
|
|
$localite=$tabCPVille[1];
|
|
}
|
|
} else {
|
|
$tabCPVille=explode('/', $tabInfoEtab['AdresseLigne3']);
|
|
if ( (int)($tabCPVille[0])>0 and (int)($tabCPVille[0])<99999)
|
|
{
|
|
$departement=$tabCPVille[0];
|
|
$localite=$tabCPVille[1];
|
|
}
|
|
}
|
|
$adresse=str_replace('/', ' ', $tabInfoEtab['AdresseLigne1']);
|
|
//$adresse=str_replace(' AV ', ' AVENUE ', $adresse);
|
|
|
|
//$activite=$tabInfoEtab['NafLib'];
|
|
|
|
//$tabInfoEtab['Enseigne'] .';'.
|
|
//$tabInfoEtab['NafCode'] .';'.
|
|
|
|
$tabResponses=rechercheTelephone($raisonSociale, $adresse, $localite, $departement, $activite);
|
|
$nbPJ=count($tabResponses);
|
|
foreach($tabResponses as $k => $value)
|
|
{
|
|
|
|
$strPJ= count($tabResponses) .';'.
|
|
$value['raisonSociale'] .';'.
|
|
$value['AdresseLigne1'] .';'.
|
|
$value['AdresseLigne2'] .';'.
|
|
$value['Dispo_Plan'] .';'.
|
|
$value['Dispo_Iti'] .';'.
|
|
$value['Dispo_Photo'] .';'.
|
|
$value['Dispo_Web'] .';'.
|
|
$value['LienWeb'] .';';
|
|
break;
|
|
}
|
|
}
|
|
|
|
if ($libelleErreur<>'' && $tabInfoEtab['siret'] =='') $siret=$sirenLu . $nicLu;
|
|
else $siret=$tabInfoEtab['siret'];
|
|
|
|
$str= date('d/m/Y à H:i:s') .';'.
|
|
$libelleErreur .';'.
|
|
// Siège
|
|
$siret .';'.
|
|
$tabInfoEtab['active'] .';'.
|
|
$tabInfoEtab['dateAbsActivite'] .';'.
|
|
$tabInfoEtab['typeEtablissement'] .';'.
|
|
$tabInfoEtab['dateMAJ'] .';'.
|
|
$tabInfoEtab['dateCreation'] .';'.
|
|
$tabInfoEtab['raisonSociale'] .';'.
|
|
$tabInfoEtab['Enseigne'] .';'.
|
|
$tabInfoEtab['NafCode'] .';'.
|
|
$tabInfoEtab['NafLib'] .';'.
|
|
$tabInfoEtab['AdresseLigne1'] .';'.
|
|
$tabInfoEtab['AdresseLigne2'] .';'.
|
|
$tabInfoEtab['AdresseLigne3'] .';'.
|
|
$tabInfoEtab['etatJuridique'] .';'.
|
|
$tabInfoEtab['dateEtatJuridique'] .';'.
|
|
// Entreprise
|
|
$tabInfoEntrep['dateCreationEntrep'] .';'.
|
|
$tabInfoEntrep['raisonSocialeEntrep'] .';'.
|
|
$tabInfoEntrep['sigle'] .';'.
|
|
$tabInfoEntrep['NafCodeEntrep'] .';'.
|
|
$tabInfoEntrep['NafLibEntrep'] .';'.
|
|
$tabInfoEntrep['FJCodeEntrep'] .';'.
|
|
$tabInfoEntrep['FJLibEntrep'] .';'.
|
|
$tabInfoEntrep['nbEtabActifs'] .';'.
|
|
$strPJ .';';
|
|
//echo $str.'<br/>';
|
|
|
|
fwrite($fpOUT, $str."\r\n");
|
|
$num=$key+1;
|
|
$typeEtablissement=$tabInfoEtab['typeEtablissement'];
|
|
echo "Ligne $num/$nbLignes : Question=$sirenLu$nicLu Retour $typeEtablissement=$siret $libelleErreur (PJ=$nbPJ)\r\n";
|
|
flush();
|
|
|
|
sleep(1);
|
|
}// Fin traitement demande d'extraction "id"
|
|
|
|
|
|
if ($argv[1]=='rncs')
|
|
{
|
|
$response=getUrl('http://www.societe.com/cgi-bin/recherche?rncs='.$sirenLu, '', '', 'http://societe.com/', true);
|
|
$pos=strpos($response, '<td align="left"><span class="boldtextarial">Pas de réponse pour ce RNCS.</span><br>');
|
|
$response=$response['body'];
|
|
if ($pos>0) {
|
|
$libelleErreur='Erreur SIREN inexistant au RNCS';
|
|
}
|
|
else
|
|
{
|
|
/** Recherche des données entreprise
|
|
**/
|
|
$tabInfoEntrep=getDataEntrepriseRNCS($response);
|
|
}
|
|
if ($libelleErreur<>'' && $tabInfoEtab['siret'] =='') $siret=$sirenLu . $nicLu;
|
|
else $siret=$tabInfoEtab['siret'];
|
|
|
|
$str= date('d/m/Y à H:i:s') .';'.
|
|
$libelleErreur .';'.
|
|
// Siège
|
|
$siret .';'.
|
|
$tabInfoEtab['active'] .';'.
|
|
$tabInfoEtab['dateAbsActivite'] .';'.
|
|
$tabInfoEtab['typeEtablissement'] .';'.
|
|
$tabInfoEtab['dateMAJ'] .';'.
|
|
$tabInfoEtab['dateCreation'] .';'.
|
|
$tabInfoEtab['raisonSociale'] .';'.
|
|
$tabInfoEtab['Enseigne'] .';'.
|
|
$tabInfoEtab['NafCode'] .';'.
|
|
$tabInfoEtab['NafLib'] .';'.
|
|
$tabInfoEtab['AdresseLigne1'] .';'.
|
|
$tabInfoEtab['AdresseLigne2'] .';'.
|
|
$tabInfoEtab['AdresseLigne3'] .';'.
|
|
$tabInfoEtab['etatJuridique'] .';'.
|
|
$tabInfoEtab['dateEtatJuridique'] .';'.
|
|
// Entreprise
|
|
$tabInfoEntrep['dateCreationEntrep'] .';'.
|
|
$tabInfoEntrep['raisonSocialeEntrep'] .';'.
|
|
$tabInfoEntrep['sigle'] .';'.
|
|
$tabInfoEntrep['NafCodeEntrep'] .';'.
|
|
$tabInfoEntrep['NafLibEntrep'] .';'.
|
|
$tabInfoEntrep['FJCodeEntrep'] .';'.
|
|
$tabInfoEntrep['FJLibEntrep'] .';'.
|
|
$tabInfoEntrep['nbEtabActifs'] .';';
|
|
//echo $str.'<br/>';
|
|
|
|
fwrite($fpOUT, $str."\r\n");
|
|
$num=$key+1;
|
|
echo "Ligne $num/$nbLignes : Question=$sirenLu$nicLu Retour $typeEtablissement=$siret $libelleErreur\r\n";
|
|
flush();
|
|
|
|
sleep(1);
|
|
}// Fin traitement demande d'extraction "rncs"
|
|
|
|
|
|
if ($argv[1]=='coface')
|
|
{
|
|
$response=getUrl('http://www.cofacerating.fr/portail/entreprise_identite/identite.asp?nsiren='.$sirenLu, '', '', 'http://www.cofacerating.fr', true);
|
|
$response=$response['body'];
|
|
$pos=strpos($response, '<tr><td bgcolor="#FFF3DE" class="normal"><b>Mauvais numéro scrl.</b></td></tr>');
|
|
if ($pos>0) {
|
|
$libelleErreur='Erreur SIREN inexistant à la COFACE';
|
|
}
|
|
else
|
|
{
|
|
/** Recherche des données entreprise
|
|
**/
|
|
$tabInfoEntrep=getDataEntrepriseCoface($response);
|
|
$response=getUrl('http://www.cofacerating.fr/portail/entreprise_rapport/ecofinance.asp?nscrl='.$tabInfoEntrep['nscrl'].'&metier=ALL&geo=ALL', '', '', 'http://www.cofacerating.fr', true);
|
|
//&idnav=cda184e11f968e5c42679b14789009e2&J=18/08/2006&H=15:44:40&tp=1'.$sirenLu
|
|
$tabInfoEco=getDataEcoCoface($response['body']);
|
|
|
|
$libelleErreur='';
|
|
|
|
}
|
|
|
|
$str= date('d/m/Y à H:i:s') .';'.
|
|
$libelleErreur .';'.
|
|
// Siège
|
|
$tabInfoEntrep['siren'] .';'.
|
|
$tabInfoEntrep['nscrl'] .';'.
|
|
$tabInfoEntrep['raisonSociale'] .';'.
|
|
$tabInfoEntrep['AdresseLigne1'] .';'.
|
|
$tabInfoEntrep['AdresseLigne2'] .';'.
|
|
$tabInfoEntrep['codePostal'] .';'.
|
|
$tabInfoEntrep['ville'] .';'.
|
|
$tabInfoEntrep['UrlGeoLoc'] .';'.
|
|
$tabInfoEntrep['tel'] .';'.
|
|
$tabInfoEntrep['fax'] .';'.
|
|
|
|
$tabInfoEntrep['web'] .';'.
|
|
$tabInfoEntrep['mail'] .';'.
|
|
$tabInfoEntrep['bourse_isin'] .';'.
|
|
$tabInfoEntrep['bourse_marche'] .';'.
|
|
$tabInfoEntrep['bourse_ville'] .';'.
|
|
$tabInfoEntrep['activite'] .';'.
|
|
$tabInfoEntrep['Produits'] .';';
|
|
if ($tabInfoEco['infoEco']=='NON')
|
|
$str.='NON;';
|
|
else {
|
|
$str.='OUI;'.
|
|
$tabInfoEco['societeInactive'] .';'.
|
|
$tabInfoEco['sigle'] .';'.
|
|
$tabInfoEco['enseigne'] .';'.
|
|
$tabInfoEco['capital_source'] .';'.
|
|
$tabInfoEco['capital_montant'] .';'.
|
|
$tabInfoEco['capital_devise'] .';'.
|
|
$tabInfoEco['dateCreation'] .';'.
|
|
$tabInfoEco['formeJuridique'] .';'.
|
|
$tabInfoEco['cotationBourse'] .';'.
|
|
$tabInfoEco['effectifSociete'] .';'.
|
|
$tabInfoEco['activite'] .';'.
|
|
$tabInfoEco['Dirigeant1Type'] .';'.
|
|
$tabInfoEco['Dirigeant1Genre'] .';'.
|
|
$tabInfoEco['Dirigeant1Prenom'] .';'.
|
|
$tabInfoEco['Dirigeant1Nom'] .';'.
|
|
$tabInfoEco['Dirigeant2Type'] .';'.
|
|
$tabInfoEco['Dirigeant2Genre'] .';'.
|
|
$tabInfoEco['Dirigeant2Prenom'] .';'.
|
|
$tabInfoEco['Dirigeant2Nom'] .';'.
|
|
$tabInfoEco['NbDirigeants'] .';'.
|
|
$tabInfoEco['LiensFinanciers'] .';'.
|
|
$tabInfoEco['ElementsFinanciers'] .';';
|
|
}
|
|
//echo $str.'<br/>';
|
|
|
|
fwrite($fpOUT, $str."\r\n");
|
|
$num=$key+1;
|
|
echo "Ligne $num/$nbLignes : Question=$sirenLu$nicLu Retour SCRL No ". $tabInfoEntrep['nscrl'] .' - '. $tabInfoEntrep['raisonSociale'] .' ('. $tabInfoEco['infoEco'] .") $libelleErreur\r\n";
|
|
flush();
|
|
|
|
sleep(1);
|
|
}// Fin traitement demande d'extraction "coface"
|
|
}
|
|
}
|
|
fclose($fpOUT);
|
|
|
|
?>
|