MadelineProto/docs/docs/SELF.md
2018-03-20 12:04:44 +00:00

10 lines
366 B
Markdown

# Getting info about the current user
```php
$me = $MadelineProto->get_self();
\danog\MadelineProto\Logger::log("Hi ".$me['first_name']."!");
```
[`get_self`](https://docs.madelineproto.xyz/get_self.html) returns a [User object](API_docs/types/User.md) that contains info about the currently logged in user/bot, or false if the current instance is not logged in.