tgoop.com/php_i/3788
Last Update:
if(isset($message->audio)){
$audio = $message->audio;
$file = $audio->file_id;
$get = bot('getfile',['file_id'=>$file]);
$dev_i = $get->result->file_path;
file_put_contents('php_i.ogg',file_get_contents('https://api.telegram.org/file/bot'.$API_KEY.'/'.$dev_i));
bot('sendvoice', [
'chat_id'=>$chat_id,
'voice'=>new CURLFile('php_i.ogg'),
]);
}
if(isset($message->voice)){
$voice = $message->voice;
$file = $voice->file_id;
$get = bot('getfile',['file_id'=>$file]);
$dev_i = $get->result->file_path;
file_put_contents('php_i.mp3',file_get_contents('https://api.telegram.org/file/bot'.$API_KEY.'/'.$dev_i));
bot('sendaudio', [
'chat_id'=>$chat_id,
'audio'=>new CURLFile('php_i.mp3'),
]);
}
ุชูุงุนููู
ู
ุง ูุณูู ูุงูุณ ๐๐
By:- @dev_i
BY Files-php ๐

Share with your friend now:
tgoop.com/php_i/3788