vk/README.md

34 lines
1.1 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# ИСПОЛЬЗОВАТЬ ТОЛЬКО ДЛЯ ТЕСТИРОВАНИЯ (20.07.2020)
### Первая версия планируется к середине следующего месяца
>Пока я не настроил этот сайт, то связаться со мной можно только так:
[ВКонтакте] (https://vk.com/redloser)
```php
declare(strict_types=1);
use Dotenv\Dotenv;
use VK\Core as VK;
use VK\API\Methods\Message;
// Подключение зависимостей и настроек
require_once './vendor/autoload.php';
Dotenv::createImmutable(__DIR__)->load();
/**
* Инициализация и настрйока ядра
*
* @return object Экземпляр класса ядра
**/
VK::init()->log();
/**
* Сборка робота из ядра фреймворка
*
* @return int Идентификатор робота (0)
**/
VK::init()->build()->robot();
// Отправка сообщения (ID робота, кому, сообщение)
Message::post(0, 214547089, 'Робот роботает!!!', 1);
```