Changeset 628 for trunk/Modules/FinanceBankAPI/FioAPI.php
- Timestamp:
- Jan 2, 2014, 1:20:35 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/FinanceBankAPI/FioAPI.php
r550 r628 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 echo($RequestURL);34 33 $Response = file_get_contents('https://www.fio.cz'.$RequestURL); 35 34 if($Response == FALSE) … … 38 37 } else 39 38 { 40 echo($Response);41 39 if($this->Format == 'gpc') $Response = iconv('windows-1250', $this->Encoding, $Response); 42 40 $Response = explode("\n", $Response);
Note:
See TracChangeset
for help on using the changeset viewer.