PHP code example of phpdev / ziraatbankasi
1. Go to this page and download the library: Download phpdev/ziraatbankasi 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/ */
phpdev / ziraatbankasi example snippets
Use Phpdev\Ziraatbankasi;
$ws = new Ziraatbankasi();
# set username password and bank account
$ws->username('asdasd')->password('deneme')->account('131231');
# get transactions
$transactions = $ws->transactions('2022-02-01', '2022-02-15');
print_r($transactions);