mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-11 23:39:36 +01:00
929 B
929 B
title | description |
---|---|
ping_delay_disconnect | ping_delay_disconnect parameters, return type and example |
Method: ping_delay_disconnect
Parameters:
Name | Type | Required |
---|---|---|
ping_id | long | Required |
disconnect_delay | int | Required |
Return type: Pong
Example:
$MadelineProto = new \danog\MadelineProto\API();
if (isset($token)) {
$this->bot_login($token);
}
if (isset($number)) {
$sentCode = $MadelineProto->phone_login($number);
echo 'Enter the code you received: ';
$code = '';
for ($x = 0; $x < $sentCode['type']['length']; $x++) {
$code .= fgetc(STDIN);
}
$MadelineProto->complete_phone_login($code);
}
$Pong = $MadelineProto->ping->delay->disconnect(['ping_id' => long, 'disconnect_delay' => int, ]);