PHP code example of omerfarukbicer0446 / doviz
1. Go to this page and download the library: Download omerfarukbicer0446/doviz 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/ */
omerfarukbicer0446 / doviz example snippets
rekli use'lar */
use Doviz\Doviz;
/* Sınıfı başlatıyoruz */
$doviz = new Doviz;
/* Get kullanımı */
$get = $doviz->get("all"); // tüm kayıtları listeler.
$first_get = $doviz->get("usd");
/* Desteklenen paralar için */
print_r($doviz->moneys);
/* Convert kullanımı */
$kur = $doviz->convert("999","eur");
/* Obje kullanımı */
echo $kur->money; // 999
echo $kur->EUR; // 8,49
echo $kur->TRYtoEUR; // 117,60
echo $kur->EURtoTRY; // 8.486,21
/*
* Çıktısı:
* stdClass Object
* (
* [money] => 999
* [EUR] => 8,49
* [TRYtoEUR] => 117,60
* [EURtoTRY] => 8.486,21
* )
*/