'Siret incorrect',
);
echo json_encode($output);
exit;
}
$tabEntrep=array();
try {
$O = $client->getIdentite($siren);
$tabEntrep=$O['result'];
} catch (SoapFault $fault) {}
/**
* Utiliser la raison sociale la plus longue
* Nom, Nom2, NomLong
*/
if (!empty($tabEntrep['NomLong']) &&
strlen($tabEntrep['NomLong'])>strlen($tabEntrep['Nom'])){
$tabEntrep['Nom'] = $tabEntrep['NomLong'];
}
//Retourner le tableau sous forme json
$tabEntrepD = htmlentitydecode_deep($tabEntrep);
echo json_encode($tabEntrepD);