We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Buenas,
Yo necesito leer un ficha de c43. Como puedo con este proyecto?
Muchas gracias
The text was updated successfully, but these errors were encountered:
Hola,
Esto es un ejemplo de como se puede utilizar:
<?php $file = new Banks_N43(); $file->parse($content); $entries = []; foreach ($file->accounts as $account) { foreach ($account->entries as $entry) { $entries[] = [ 'date' => $entry->date, 'name' => trim("{$entry->refererence_1} {$entry->refererence_2}"), 'amount' => $entry->type == Banks_N43::TYPE_DEBIT ? (-1 * $entry->amount) : $entry->amount, 'subjects' => array_filter(array_filter($entry->concepts,'trim')) ]; } } var_dump($entries);
Sorry, something went wrong.
No branches or pull requests
Buenas,
Yo necesito leer un ficha de c43. Como puedo con este proyecto?
Muchas gracias
The text was updated successfully, but these errors were encountered: