Correction chemin fichier

This commit is contained in:
Michael RICOIS 2010-12-01 09:23:30 +00:00
parent 0ec0ba95e8
commit 08fbd468e8

View File

@ -1,6 +1,6 @@
<?
class MFedaso {
private $tabCodeRetour=array(0 => 'Traitement OK',
100 => 'Document illisible',
101 => 'Document partiellement lisible',
@ -23,17 +23,17 @@
301 => 'Code devise absent du référentiel',
201 => 'Code fonction inexistant',
);
public function getRefCodeRetour($sep=',', $eol=EOL) {
$str='codRetour'.$sep.'libRetour'.$eol;
foreach ($this->tabCodeRetour as $key=>$value)
$str.=$key.$sep.$value.$eol;
return $str;
}
public function getRefCodeVoie($sep=',', $eol=EOL) {
$row = 1;
$handle = fopen('/var/www/html/ws/data/tables/voies.csv', 'r');
$handle = fopen(DOC_WEB_LOCAL.'voies.csv', 'r');
if (!$handle) die('Impossible d\'ouvrir le fichier de configuration des voies INSEE');
$tabTmp=array();
while (($data = fgetcsv($handle, 1000, ';')) !== FALSE) {
@ -46,7 +46,7 @@
fclose($handle);
return $str;
}
}
?>