Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 552 Bytes

File metadata and controls

34 lines (23 loc) · 552 Bytes

Cookie и Сессии

Cookie

use Pet\Cookie\Cookie;

// Установка
Cookie::set(['theme' => 'dark', 'lang' => 'ru']);

// Получение
$theme = Cookie::get('theme');

// HttpOnly
Cookie::httpOnly(['token' => $token]);

// Удаление
Cookie::delete('theme');

Сессии

use Pet\Session\Session;

// Установка
Session::set(['user_id' => 42]);

// Получение
$userId = Session::get('user_id');
$all    = Session::get(); // все данные

// Уничтожение
Session::kill();