Skip to content

mansoormoradi1992-stack/RubikaPhp

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

مستندات RubikaPhp

RubikaPhp

کتابخانه ای برای تعامل با Rubika Bot Api

دانلود و نصب

git clone https://github.com/AbolfazlMirzae/RubikaPhp.git

Core

Bot


ساخت بات

require_once('rubikaphp/lib/autoload.php');

use RubikaPhp\Core\Bot;

$bot = new Bot('Your Bot Token');

ارسال پیام

$chat_id = 'c12345'; #Your ChatId
$text = 'Hello From RubikaPhp'; #Your Text

$bot->chatId($chat_id)
    ->text($text)
    ->sendMessage();

ارسال فایل

$chat_id = 'c123456';,²
$filePath = 'path/to/file.png'; #Optional

$bot->chatId($chat_id)
    ->filePath($filePath)
    ->sendFile();

About

RubikaPhp Library For Rubika Bot Api

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 100.0%