Functions
@BotSorce
#درخواستی
♦⭕ دریافت تعداد تصاویر پروفایل کاربر⬇⬇⬇
function GetProfileCount($from_id){
$decode = json_decode($get, true);
return $decode['result']['total_count'];
♦⭕ دریافت تصویر کاربر ربات تلگرام⬇⬇⬇
function getUserProfilePhotos($token,$from_id) {
$url = 'https://api.telegram.org/bot'.$token.'/getUserProfilePhotos?user_id='.$from_id;
$result = file_get_contents($url);
$result = json_decode ($result);
♦⭕ دریافت آیدی عددی ادمین های گروه⬇⬇⬇
foreach($result as $key=>$value){
$found = $result[$key]['status'];
$owner = $result[$key]['user']['id'];
if($found == "administrator"){
$msg= $msg."\n".$result[$key]['user']['id'];
♦⭕ دریافت اطلاعات یک عضو در گروه یا کانال ربات تلگرام⬇⬇⬇
function GetChatMember($chatid,$userid){
$tch = $truechannel->result->status;
♦⭕ ذخیره اطلاعات در یک فایل TXT⬇⬇⬇
function save($filename,$TXTdata){
$myfile = fopen($filename, "w") or die("Unable to open file!");