Download the PHP package alikm6/php-telegram-bot without Composer
On this page you can find all versions of the php package alikm6/php-telegram-bot. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package php-telegram-bot
PHP Telegram Bot API
This is a simple PHP package that provides an easy-to-use interface for the Telegram Bot API (https://core.telegram.org/bots). It is compliant with the May 28, 2024 Telegram Bot API update (version 7.4) and supports sending multiple requests at once.
Requirements
To use PHP Telegram Bot API, you need the following:
- PHP 7.4 or higher
- MultiCurl and exec must be enabled in PHP
- Composer
Installation
To install the package, use Composer:
If you encounter error it does not match your minimum-stability
during installation, run the following commands and try again:
Usage
To use this package, you first need to create a Telegram object as follows:
Parse Update
If you have set up a webhook for your bot, you can receive the information sent from Telegram to the server in the form of an array using the following code:
For more security, if you want to process only requests sent from Telegram servers and ignore other requests, you can use the following code at the beginning of your webhook file.
In this case, if a request has not been sent from the Telegram servers, the php script will stop and the request will not be processed.
Use of methods
You can use any of the Telegram Bot API methods, for example:
See https://core.telegram.org/bots/api for more information about available methods.
Each method can receive an optional array of options for API requests:
The return
option can have the following values:
result_array
: The 'result' key of the Telegram API response will be returned as an associative array.result_object
: The 'result' key of the Telegram API response will be returned as an object.response
: The raw response from the Telegram API will be returned as a string.response_array
: The raw response from the Telegram API will be returned as an associative array.response_object
: The raw response from the Telegram API will be returned as an object.
If $options
is not set, then the default options will be applied.
Sending Requests Simultaneously
To send several requests simultaneously, you can pass an array of requests to the method:
License
This package is licensed under the MIT License. See the LICENSE file for details.
All versions of php-telegram-bot with dependencies
ext-curl Version *
ext-json Version *
php-curl-class/php-curl-class Version 9.*