PHP code example of tomwright / currency-php-yahoo-rate-fetcher

1. Go to this page and download the library: Download tomwright/currency-php-yahoo-rate-fetcher 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/ */

    

tomwright / currency-php-yahoo-rate-fetcher example snippets



$rateFetcher = new YahooRateFetcher();

$gbp = new Currency('GBP', $rateFetcher);
$usd = new Currency('USD', $rateFetcher);

$priceInGBP = 100;
$priceInUSD = $gbp->convertTo($usd, $priceInGBP);
echo $priceInUSD; // 126

composer