Changeset 874 for trunk/Modules/FinanceBankAPI/FioAPI.php
- Timestamp:
- Apr 6, 2020, 11:56:19 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/FinanceBankAPI/FioAPI.php
r873 r874 7 7 function RemoveComma($Text) 8 8 { 9 if ((mb_strlen($Text) >= 2) and ($Text[0] == '"') and (mb_substr($Text, -1, 1) == '"')) return (mb_substr($Text, 1, -1));10 else return ($Text);9 if ((mb_strlen($Text) >= 2) and ($Text[0] == '"') and (mb_substr($Text, -1, 1) == '"')) return mb_substr($Text, 1, -1); 10 else return $Text; 11 11 } 12 12 … … 97 97 } 98 98 } 99 return ($Result);99 return $Result; 100 100 } 101 101 }
Note:
See TracChangeset
for help on using the changeset viewer.