ofxparser
ofxparser copied to clipboard
:moneybag: OFX File Parser
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; .......
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"...
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...
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:...