PHP code example of gnahotelsolutions / currency-converter
1. Go to this page and download the library: Download gnahotelsolutions/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/ */
gnahotelsolutions / currency-converter example snippets
$repository = new CurrenciesRepository([
new Currency('EUR', 1, 2),
new Currency('USD', 1.1, 2),
// ...
]);
$price = new Price(1000, 'EUR');
$converter->from($price)->to('USD')->convert(); // new Price(1100, 'USD')