Changeset 888 for trunk/Modules/FinanceBankAPI/FioAPI.php
- Timestamp:
- Nov 24, 2020, 10:58:56 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/FinanceBankAPI/FioAPI.php
r887 r888 5 5 include('GPC.php'); 6 6 7 function RemoveComma( $Text)7 function RemoveComma(string $Text): string 8 8 { 9 9 if ((mb_strlen($Text) >= 2) and ($Text[0] == '"') and (mb_substr($Text, -1, 1) == '"')) return mb_substr($Text, 1, -1); … … 13 13 class FioAPI 14 14 { 15 var$Token;16 var$Encoding;17 var$Format;15 public string $Token; 16 public string $Encoding; 17 public string $Format; 18 18 19 19 function __construct()
Note:
See TracChangeset
for help on using the changeset viewer.