tgoop.com/php_i/3958
Create:
Last Update:
Last Update:
البوت هذا فنكشن جاهز تعبرلة 3 براميترات الرقم والعملة الاصلية والعملة التريد تحول الها
وتغير ال key
#عمر_ مظفر
<?php
function convertCurrency($amount,$from_currency,$to_currency){
$apikey = 'your-api-key-here';
$from_Currency = urlencode($from_currency);
$to_Currency = urlencode($to_currency);
$query = "{$from_Currency}_{$to_Currency}";
// change to the free URL if you're using the free version
$json = file_get_contents("https://free.currconv.com/api/v7/convert?q={$query}&compact=ultra&apiKey={$apikey}");
$obj = json_decode($json, true);
$val = floatval($obj["$query"]);
$total = $val * $amount;
return number_format($total, 2, '.', '');
}
//uncomment to test
//echo convertCurrency(10, 'USD', 'PHP');
BY Files-php 📂
Share with your friend now:
tgoop.com/php_i/3958