MadelineProto/old_docs/API_docs_v51/methods/updates_getDifference.md

39 lines
987 B
Markdown
Raw Normal View History

---
title: updates_getDifference
description: updates_getDifference parameters, return type and example
---
## Method: updates\_getDifference
[Back to methods index](index.md)
### Parameters:
| Name | Type | Required |
|----------|:-------------:|---------:|
|pts|[int](../types/int.md) | Required|
|date|[int](../types/int.md) | Required|
|qts|[int](../types/int.md) | Required|
### Return type: [updates\_Difference](../types/updates_Difference.md)
### 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);
}
$updates_Difference = $MadelineProto->updates->getDifference(['pts' => int, 'date' => int, 'qts' => int, ]);
```