MadelineProto/docs/API_docs/methods/account_getAccountTTL.md
2016-12-21 12:40:30 +03:00

711 B

title description
account_getAccountTTL account_getAccountTTL parameters, return type and example

Method: account_getAccountTTL

Back to methods index

Return type: AccountDaysTTL

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);
}

$AccountDaysTTL = $MadelineProto->account->getAccountTTL();