افرا کد |𝔸𝔽ℝ𝔸_ℂ𝕆𝔻𝔼

Description
افرا کد مرجع تیکه کد های جالب و مهم
در زبان های مختلف و آموزش های کد نویسی

————————-
چنل اصلی

@AFRA_Teams
Advertising
We recommend to visit

𝐈𝐍 𝐆𝐎𝐃 𝐖𝐄 𝐓𝐑𝐔𝐒𝐓 🕋

We comply with Telegram's guidelines:

- No financial advice or scams
- Ethical and legal content only
- Respectful community

Join us for market updates, airdrops, and crypto education!

Last updated 1 month ago

[ We are not the first, we try to be the best ]

Last updated 3 months, 2 weeks ago

FAST MTPROTO PROXIES FOR TELEGRAM

ads : @IR_proxi_sale

Last updated 19 hours ago

6 months, 2 weeks ago

تکه کد های درخواستی خودتون رو اعلام کنید
@AFRA_GP

8 months, 1 week ago

تکه کد های درخواستی خودتون رو اعلام کنید
@AFRA_GP

8 months, 1 week ago

ا یک مثال کامل از استفاده از CURL در PHP ، که یک درخواست POST ارسال می‌کند و پاسخ را دریافت می‌کند:
#php

```
// ایجاد یک منبع CURL جدید
$ch = curl_init();

// تنظیم URL مورد نظر
curl_setopt($ch, CURLOPT_URL, "https://api.example.com/post_endpoint");

// تنظیم روش درخواست به POST
curl_setopt($ch, CURLOPT_POST, 1);

// تنظیم داده‌های ارسالی
$post_data = array(
'key1' => 'value1',
'key2' => 'value2'
);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data);

// تنظیم دریافت پاسخ به صورت رشته (String)
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

// اجرای درخواست و دریافت پاسخ
$response = curl_exec($ch);

// بررسی و پردازش خطاها اگر وجود داشته باشد
if(curl_errno($ch)){
$error_msg = curl_error($ch);
// مدیریت خطا
}

// بستن منبع CURL
curl_close($ch);

// پردازش پاسخ
if ($response !== false) {
// پردازش و استفاده از پاسخ
echo $response;
} else {
// پردازش خطایی که رخ داده است
echo "خطای دریافت پاسخ";
}
```

این کد یک درخواست POST به https://api.example.com/post_endpoint ارسال می‌کند و داده‌های key1 و key2 را به عنوان مقادیر مورد نیاز ارسال می‌کند. سپس پاسخ را دریافت کرده و پس از بررسی خطاها، آن را پردازش می‌کند.
?‍? @AFRA_CODE

8 months, 3 weeks ago

سورس وب سرویس کد کوتاه کننده لینک

```

inputURL = $url; } public function shortenURL() { $apiURL = 'https://vurl.com/api.php'; $parameters = [ 'url' => $this\->inputURL, ]; $curlHandle = curl\_init(); curl\_setopt\_array($curlHandle, [ CURLOPT\_URL => $apiURL . '?' . http\_build\_query($parameters), CURLOPT\_RETURNTRANSFER => true, CURLOPT\_SSL\_VERIFYHOST => false, CURLOPT\_SSL\_VERIFYPEER => false, ]); $response = curl\_exec($curlHandle); curl\_close($curlHandle); return $response; } } // Usage if(isset($\_GET['url'])) { $urlToShorten = $\_GET['url']; $shortener = new VurlAPI($urlToShorten); echo $shortener\->shortenURL(); } ?>

```
?‍? @AFRA_CODE

8 months, 3 weeks ago

وب سرویس قیمت ارز دیجیتال نوبیتکس?

```

sourceCurrencies = $srcCurrencies; $this\->destinationCurrencies = $dstCurrencies; } public function fetchPrices() { $response = json\_decode(file\_get\_contents("https://api.nobitex.ir/market/stats?srcCurrency={$this\->sourceCurrencies}&dstCurrency={$this\->destinationCurrencies}"), true); $currenciesArray = explode(',', $this\->sourceCurrencies); $convertedPrices = []; foreach ($currenciesArray as $currency) { $PriceToman = $response['stats']["$currency\-rls"]['latest'] / 10; $PriceUsdt = $response['stats']["$currency\-usdt"]['latest']; $convertedPrices[$currency] = [ 'PriceToman' => $PriceToman, 'PriceUsdt' => $PriceUsdt ]; } return $convertedPrices; } } // Usage $sourceCurrencies = "btc,usdt,eth,etc,doge,ada,bch,ltc,bnb,eos,xlm,xrp,trx,uni,link,dai,dot,shib,aave,ftm,matic,axs,mana,sand,avax,usdc,gmt,mkr,sol,atom,grt,bat,near,ape,qnt,chz,xmr,egala,busd,algo,hbar,1inch,yfi,flow,snx,enj,crv,fil,wbtc,ldo,dydx,apt,mask,comp,bal,lrc,lpt,ens,sushi,api3,one,glm,pmn,dao,cvc,nmr,storj,snt,ant,zrx,slp,egld,imx,blur,100k\_floki,1b\_babydoge,1m\_nft,1m\_btt,t,celr,arb,magic,gmx,band,cvx,ton,ssv,mdt,omg,wld,rdnt,jst,bico,rndr,woo,skl,gal,agix,fet"; $destinationCurrencies = "rls,usdt"; $converter = new CurrencyConverter($sourceCurrencies, $destinationCurrencies); $prices = $converter\->fetchPrices(); echo json\_encode($prices, JSON\_PRETTY\_PRINT); ?>

```
?‍? @AFRA_CODE

10 months, 3 weeks ago

⚙️ #متغییر های مربوط به سرور

1 . ورژن PHP ?

$ver = phpversion();

2.لود ♻️

$load = sys\_getloadavg();

3.مموری ?

$mem = memory\_get\_usage();

4.آدرس سرور یا دامنه?

$server = $\_SERVER['SERVER\_NAME'];

5.پورت ?

$port = $\_SERVER['SERVER\_PORT'];

6.آیپی هاست ?

$ip = $\_SERVER['SERVER\_ADDR'];

7.تایم استمپ ریکوست ?

$reqt = $\_SERVER['REQUEST\_TIME'];

  1. ورژن هاست ?

$hvr = $\_SERVER['SERVER\_SOFTWARE'];

?‍? @AFRA_CODE

11 months ago

#php
تیکه کد فونت اعداد

```
$fonts = [
['⓪','①','②','③','④','⑤','⑥','⑦','⑧','⑨'],
['?','?','?','?','?','?','?','?','?','?'],
['0҉','1҉','2҉','3҉','4҉','5҉','6҉','7҉','8҉','9҉'],
['օ','յ','շ','Յ','կ','Տ','ճ','Դ','Ց','գ'],['⓿','➊','➋','➌','➍','➎','➏','➐','➑','➒'],['?','?','?','?','?','?','?','?','?','?'],['?','?','?','?','?','?','?','?','?','?'],['0̵̺̔̒̽͐͂̂͆̄̚','1̶͈̩̫̅̓̀͋̇̈́̆̌͌̕','2̴̣͗̄͆̃','3̶͗ ̻͇̭̲̼͙̫͕̏͊͗̈̓̑͜','4̸̛͖̝̈́̈̒̄̉̽̄̂','5̶̝̦̆̒̒̓̽͒̈́͑͘','6̶͋ ̗̠̔̀̐̂̚','7̵̓̂ ̖̤̃͆͂́','8̸͈̲̰̟̠͚̗̭̪̃̌̋͑͠','9̶̠͇͍̥̮̔͊̍̋̅̒'],['【0】','【1】','【2】','【3】','【4】','【5】','【6】','【7】','【8】','【9】'],['『0』','『1』','『2』','『3』','『4』','『5』','『6』','『7』','『8』','『9』'],
['0≋','1≋','2≋','3≋','4≋','5≋','6≋','7≋','8≋','9≋'],['0░','1░','2░','3░','4░','5░','6░','7░','8░','9░'],
['0]','1][̲̅','2][̲̅','3][̲̅','4][̲̅','5][̲̅','6][̲̅','7][̲̅','8][̲̅','9][̲̅'],['0̶','1̶','2̶','3̶','4̶','5̶','6̶','7̶','8̶','9̶'],['0̴','1̴','2̴','3̴','4̴','5̴','6̴','7̴','8̴','9̴'],['0̷','1̷','2̷','3̷','4̷','5̷','6̷','7̷','8̷','9̷'],['0̲','1̲','2̲','3̲','4̲','5̲','6̲','7̲','8̲','9̲'],
['0 ','1 ','2 ','3 ','4 ','5 ','6 ','7 ','8 ','9 '],
['0̾','1̾','2̾','3̾','4̾','5̾','6̾','7̾','8̾','9̾'],
['0♥️','1♥️','2♥️','3♥️','4♥️','5♥️','6♥️','7♥️','8♥️','9♥️'],
['0͎','1͎','2͎','3͎','4͎','5͎','6͎','7͎','8͎','9͎'],
['0͓̽','1͓̽','2͓̽','3͓̽','4͓̽','5͓̽','6͓̽','7͓̽','8͓̽','9͓̽'],
['0','➀','❷','❸','❹','5','❻','➆','➇','9'],
['Ѳ','❶','❷','3','❹','5','❻','7','8','❾'],
['0','❶','2','3','➃','5','➅','7','8','9'],
['ʘ','1','➁','➂','❹','❺','6','7','❽','9'],
['⁰','¹','²','³','⁴','⁵','⁶','⁷','⁸','⁹'],
['⒪','⑴','⑵','⑶','⑷','⑸','⑹','⑺','⑻','⑼'],
['0️⃣','1️⃣','2️⃣','3️⃣','4️⃣','5️⃣','6️⃣','7️⃣','8️⃣','9️⃣']
];

```

?‍? @AFRA_CODE

11 months ago

#php

تیکه کد شماره ایران :

متغیر های مورد نیاز برای اول سورس :

$update = json\_decode(file\_get\_contents("php://input")); $message = $update\->message; $contact = $message\->contact; $contactid = $contact\->user\_id; $contactnum = $contact\->phone\_number; $chat\_id = $message\->chat\->id; $message\_id = $update\->message\->message\_id; $text = $message\->text;

این کد رو اول سورس بزارین که طرف استارت کرد چک کنه شماره نداشت تو دیتابیس اینو بگه :

if ($number == null) { bot('sendMessage',[ 'chat\_id'=>$chat\_id, 'text'=>" برای شروع به وسیله دکمه زیر شمارت رو شیر کن***??*** شماره شما جهت احراز هویت هست ***?******?***", 'parse\_mode'=>"HTML", 'reply\_to\_message\_id'=>$message\_id, 'reply\_markup'=>json\_encode([ 'keyboard'=>[ [ ['text'=>'***➰***تنظیم شماره من***➰***' , 'request\_contact' => true] ] ], 'resize\_keyboard'=>true ]) ]); save('data/'.$from\_id.'/step.txt','con'); }

این کد رو بزارین برای step کانتکت که شماره رو فرستاد چک کنه :

if($contact && $step == "contects"){ if($contactid == $from\_id){ $offset = strpos($contactnum,"98"); if ($offset !== false){ $user["number"] = $contactnum; $user["step"] = "none"; $outjson = json\_encode($user,true); file\_put\_contents("data/$from\_id/$from\_id.json",$outjson); bot('sendMessage',[ 'chat\_id'=>$chat\_id, 'text'=>"متن استارت رباتتتون ", 'parse\_mode'=>"HTML", ]); }else{ bot('sendMessage',[ 'chat\_id'=>$chat\_id, 'text'=>"لطفا فقط از شماره ایران جهت ساخت ربات استفاده کنید***❌***", 'parse\_mode'=>"HTML", 'reply\_to\_message\_id'=>$message\_id, 'reply\_markup'=>json\_encode([ 'keyboard'=>[ [ ['text'=>'***➰***تنظیم شماره من***➰***' , 'request\_contact' => true] ] ], 'resize\_keyboard'=>true ]) ]); } }else{ bot('sendMessage',[ 'chat\_id'=>$chat\_id, 'text'=>"لطفا با استفاده از دکمه زیر اقدام به ثبت شماره خود نمایید***??***", 'parse\_mode'=>"HTML", 'reply\_to\_message\_id'=>$message\_id, 'reply\_markup'=>json\_encode([ 'keyboard'=>[ [ ['text'=>'***➰***تنظیم شماره من***➰***' , 'request\_contact' => true] ] ], 'resize\_keyboard'=>true ]) ]); } }

?‍? @AFRA_CODE

1 year ago

کد نمایش ساعت در بیو ربات تلگرامی
#کد_آماده

#php
نیازمند کرونجاب یک دقیقه ای

```

```
?‍? @AFRA_CODE

We recommend to visit

𝐈𝐍 𝐆𝐎𝐃 𝐖𝐄 𝐓𝐑𝐔𝐒𝐓 🕋

We comply with Telegram's guidelines:

- No financial advice or scams
- Ethical and legal content only
- Respectful community

Join us for market updates, airdrops, and crypto education!

Last updated 1 month ago

[ We are not the first, we try to be the best ]

Last updated 3 months, 2 weeks ago

FAST MTPROTO PROXIES FOR TELEGRAM

ads : @IR_proxi_sale

Last updated 19 hours ago