17 lines
492 B
PHP
17 lines
492 B
PHP
![]() |
<?php
|
||
|
|
||
|
require 'ncc';
|
||
|
import('net.nosial.tgbotlib');
|
||
|
|
||
|
$bot = new TgBotLib\Bot('5126030313:AAEn3QcwSvTJ2eAKUnSb_MkC5U0tlqkM1xw');
|
||
|
|
||
|
while(true)
|
||
|
{
|
||
|
foreach($bot->getUpdates() as $update)
|
||
|
{
|
||
|
if($update->getMessage() !== null && $update->getMessage()->getText() !== null)
|
||
|
{
|
||
|
print(sprintf("%s: %s", $update->getMessage()->getFrom()->getFirstName(), $update->getMessage()->getText()) . PHP_EOL);
|
||
|
}
|
||
|
}
|
||
|
}
|