1. Go to this page and download the library: Download sme/app library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
$response->body(); //Тело ответа
$response->json(); //Если запрашивали json можно сразу преобразовать в массив
$response->header('имя заголовка'); //Получить заголовок из ответа
$response->headers(); //Получить все заголовки в виде массива
$response->ok(); //Если всё хорошо то true
$response->successful(); //Если код от 200 до 299
$response->failed(); //Если код от 400 до 499
$response->clientError(); //Если код 400
$response->serverError(); //Если код 500
Route::console('time',function(){
while(true) { //Создаём вечный цикл
Log::thisLine(true)->info(date('H:i:s')); //Выводим текущее время и смещаем каретку в начало
sleep(1); //Ставим задержку на выполнение в 1 секунду
}
});