Citation :
<? ini_set('allow_url_fopen','on');
$cour_h=0;
$cour_t=0;
$url="http://www.banque-france.fr/fr/poli_mone/taux/telnomot/qs.d.ceurusci.txt";
$maj_today=false;
$j=time()-(24*60*60); $today=date('d/m/Y');
$hier=date('d/m/Y', $j);
//chargement du fichier dans $f en tableau $fc=file($url);
//parcour du tableau $f ligne par ligne
foreach($fc as $line){
if ((substr($line, 0, 10))==(substr($hier,0,10))){ //cherche la date $hier
$cour_h= substr($line, 11, 6);}
elseif ((substr($line, 0, 10))==(substr($today,0,10))) { // cherche la date $today
$maj_today=true;
$cour_t= substr($line, 11, 6);}
}
if ($maj_today==true){
$cour= $cour_t;
$date= $today;}
else{
$cour= $cour_h; $date= $hier;} ?>
|