ساخت منو برای ربات تلگرام
نویسنده : علی بجنوردی | زمان انتشار : 16 شهریور 1398 ساعت 12:29
<?php
// ارسال پیام
functionsend_message(){
$reply="salam";
$url=$GLOBALS['bot_url']."/sendMessage";
$post_params=['chat_id'=> $GLOBALS['chat_id'],'text'=>$reply];
send_reply($url,$post_params);
}
//-------------------------------------
// ارسال عکس - تصویر
functionsend_photo(){
$url=$GLOBALS['bot_url']."/sendPhoto";
$post_params=[
'chat_id'=>$GLOBALS['chat_id'],
'photo' =>newCURLFILE(realpath("image_file.png")),
'caption'=>"توضیحات عکس", // optional
];
send_reply($url,$post_params);
}
//-------------------------------------
// ارسال فایل صوتی
functionsend_audio(){
$url=$GLOBALS['bot_url']."/sendAudio";
$post_params=[
'chat_id' =>$GLOBALS['chat_id'],
'audio' =>newCURLFILE(realpath("audio_file.mp3")),
'caption' =>"توضیحات فایل صوتی", // optional
'title' =>"عنوان آزمایشی", // optional
'performer'=>"test person", // optional
];
send_reply($url,$post_params);
}
//-------------------------------------
// ارسال فایل ویدئویی
functionsend_video(){
$url=$GLOBALS['bot_url']."/sendVideo";
$post_params=[
'chat_id' =>$GLOBALS['chat_id'],
'video' =>newCURLFILE(realpath("video_file.mp4")),
'caption' =>"توضیحات فایل ویدئویی", // optional
];
send_reply($url,$post_params);
}
//-------------------------------------
// ارسال داکیومنت - فایل
functionsend_document(){
$url=$GLOBALS['bot_url']."/sendDocument";
$post_params=[
'chat_id' =>$GLOBALS['chat_id'],
'document'=>newCURLFILE(realpath("document.pdf")),
'caption' =>"توضیحات داکیومنت ", // optional
];
send_reply($url,$post_params);
}
//-------------------------------------
// ارسال استیکر
functionsend_sticker(){
$url=$GLOBALS['bot_url']."/sendSticker";
$post_params=[
'chat_id'=>$GLOBALS['chat_id'],
'sticker'=>newCURLFILE(realpath("sticker.webp")),
];
send_reply($url,$post_params);
}
//-------------------------------------
// ارسال موقعیت مکانی - نقشه
functionsend_location(){
$url=$GLOBALS['bot_url']."/sendLocation";
$post_params=[
'chat_id' =>$GLOBALS['chat_id'],
'latitude' =>32.657269,
'longitude'=>51.677568,
];
send_reply($url,$post_params);
}
//-------------------------------------
// ارسال اطلاعات تماس
functionsend_contact(){
$url=$GLOBALS['bot_url']."/sendContact";
$post_params=[
'chat_id' =>$GLOBALS['chat_id'],
'phone_number'=>"09131234567",
'first_name' =>"mzsoftware.ir",
'last_name' =>"website",// optional
];
send_reply($url,$post_params);
}
?>