1. Go to this page and download the library: Download imissher/first-sprint 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/ */
imissher / first-sprint example snippets
Route::get('url', 'path/to/file', [NameController::class, 'func_name']);
// последний массив с передачей класса и названия функции необязателен
use App\Services\Views\View;
class NameController
{
public function func_name()
{
//some code
View::render('path/to/view', ['variable name' => $value]);
//массив значений не обязательный параметр
}
}
use App\Services\Session\Session;
$s = new Session();
$s->create_session('name', $value); // создание
$s->get_session('name'); // получение
$s->unset_session('name'); // удаление
use App\Services\Session\Session;
$s = new Session();
$s->get_session('varible_name');