Skip to content

Instantly share code, notes, and snippets.

View Mattiafarinaro's full-sized avatar

mafo Mattiafarinaro

View GitHub Profile
@salvatorecordiano
salvatorecordiano / webhook.php
Last active March 10, 2023 10:27
Sample Telegram Bot (3)
<?php
// recupero il contenuto inviato da Telegram
$content = \file_get_contents('php://input');
// converto il contenuto da JSON ad array PHP
$update = \json_decode($content, true);
// se la richiesta è null interrompo lo script
if(!$update) {
exit;
}
// assegno alle seguenti variabili il contenuto ricevuto da Telegram