Changeset 836 for trunk/Modules/FinanceBankAPI/FioAPI.php
- Timestamp:
- Sep 17, 2016, 6:45:03 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/FinanceBankAPI/FioAPI.php
r805 r836 31 31 $RequestURL = '/ib_api/rest/periods/'.$this->Token.'/'. 32 32 date('Y-m-d', $TimeFrom).'/'.date('Y-m-d', $TimeTo).'/transactions.'.$this->Format; 33 $Response = file_get_contents('https://www.fio.cz'.$RequestURL); 33 $Response = ''; 34 $Response = @file_get_contents('https://www.fio.cz'.$RequestURL); 34 35 if($Response == FALSE) 35 36 { … … 77 78 array_shift($Response); // Remove empty line 78 79 79 if((count($Response) == 0) or 80 if((count($Response) == 0) or 80 81 ($Response[0] != 'ID pohybu;Datum;Objem;Měna;Protiúčet;Název protiúčtu;Kód banky;Název banky;KS;VS;SS;Uživatelská identifikace;Zpráva pro příjemce;Typ;Provedl;Upřesnění;Komentář;BIC;ID pokynu') 81 82 ) throw new Exception('Unsupported CSV header');
Note:
See TracChangeset
for help on using the changeset viewer.