PHP code example of tkaratug / tcmb_currency_converter
1. Go to this page and download the library: Download tkaratug/tcmb_currency_converter 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/ */
tkaratug / tcmb_currency_converter example snippets
use Currency\Converter;
$convert = new Converter(10); // 10 dakika önbellekte tutulur
// 1 USD'nin TL karşılığı olan alış fiyatı
$convert->from('USD')->to('TRY')->amount(1)->selling()
// 1 USD'nin TL karşılığı olan satış fiyatı
$convert->from('USD')->to('TRY')->amount(1)->buying();
// Tarih
echo $convert->getDate();