PHP code example of ae-soft / client-bank-exchange-php
1. Go to this page and download the library: Download ae-soft/client-bank-exchange-php library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
ae-soft / client-bank-exchange-php example snippets
use Darkeum\ClientBankExchange\Parser;
var_dump($p->general); // general info
var_dump($p->filter); // selection settings
var_dump($p->remainings); // to see bank account remainings
foreach($p->documents as $d) {
echo $d['type'], " => "; // document type
echo $d->{'Номер'}; // some fields
echo "\n";
}
$ composer