ofxparser icon indicating copy to clipboard operation
ofxparser copied to clipboard

:moneybag: OFX File Parser

Results 14 ofxparser issues
Sort by recently updated
recently updated
newest added

The parser are storing SimpleXML elements in the entities properties. I think, for example, the code from Parser::buildCreditAccount: ``` .... $bankAccount->accountNumber = $statementResponse->BANKACCTFROM->ACCTID; $bankAccount->routingNumber = $statementResponse->BANKACCTFROM->BANKID; $bankAccount->accountType = $statementResponse->BANKACCTFROM->ACCTTYPE; .......

enhancement
BC break

The regex in Ofx::createAmountFromStr included a "?" after the "mark" whether it be decimal or comma. That "?" made it match number strings regardless of whether they had a "mark"...

enhancement
BC break

The OFX file includes some additional details for each transaction that are not captured when parsing. Would it be possible to extract those fields _or_ include a `SimpleXMLElement` referencing the...

question

Hey there, I've just tried parsing an OFX file from a dummy account on Google Finance and I get the following really long error: ``` php Failed to parse OFX:...

bug