Files-php 📂
1.34K subscribers
15 photos
7 videos
67 files
37 links
• قناة كل ما يخص لـ [php ]
بوتات - ملفات - اكواد 🚸

• قناتـي ٢ 🦋:- @i_lo_v_e

• قناة شروحات 📖 :- @php_ii

• حساباتي 🔖:- @dev_i

• تواصل القناة 🗳 :- [ @alsaed_ali_bot ]
Download Telegram
Files-php 📂
https://free.currconv.com/api/v7/convert?q=USD_IQD&100=ultra&apiKey=4657a3bc4df85b3c6415 موقع بورصه عالمي Api لكل دول تكدر تحصل ع Key خاص بيك من خلال تسجيل بالموقع وراح يرسلك ع ايميل key 🔺
البوت هذا فنكشن جاهز تعبرلة 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');