PHP code example of phpdev / garantibankasi

1. Go to this page and download the library: Download phpdev/garantibankasi 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 / garantibankasi example snippets



use Phpdev\Garantibankasi;

$entegrasyon = new Garantibankasi('kullanıcı adı','parola',"bankadan verilen key");

$response = $entegrasyon->hesap_hareketleri('2021-03-02','IBAN');

print_r(json_encode($response));

}