SktT1Byungi/Session
PHP Session manager (with non blocking handler), (*1)
, (*2)
Require
PHP 5.6 <= *, (*3)
Simple Example
use SktT1Byungi\Session\Session;
Session::manager()->start();
Session::set('aaa', '111');
var_dump(Session::get('aaa') === $_SESSION['aaa']);
// true
Usage
manager()
Session::manager()->id("id")->name("name")->start();
// session_id("id");
// session_id("name");
// session_start();
Session::manager()->close()->destroy();
// session_write_close();
// session_destroy();
Session::manager()->settings([
'cookie_httponly' => true,
'use_only_cookies' => true,
]);
// ini_set("session.cookie_httponly", true);
// ini_set("session.use_only_cookies", true);
Session::manager()->handler(new CustomHandler)->start();
// used custom handler
helpers
Session::set('aaa', [
'bbb' => [
'ccc' => 111,
'ddd' => 222,
],
]);
Session::set('eee', '333');
Session::set('fff', '444');
echo Session::get('aaa.bbb.ccc');
// 111
var_dump(Session::has('ccc'), Session::has('eee'));
// false, true
var_dump(Session::only(['eee', 'fff']));
// ['eee' => '333', 'fff' => '444']
var_dump(Session::except(['aaa']));
// ['eee' => '333', 'fff' => '444']
Session::forget('aaa.bbb'); //or Session::remove('aaa.bbb');
// unset($_SESSION['aaa']['bbb']);
details links : https://laravel.com/docs/5.3/helpers#arrays, (*4)
collection
Session::set('aaa', [
[
"name" => "bangi",
"position" => "god",
],
[
"name" => "faker",
"position" => "human",
],
[
"name" => "duke",
"position" => "human",
],
[
"name" => "wolf",
"position" => "pig",
],
]);
var_dump(Session::collect('aaa')->where('position', 'human')->all());
// [
// 1 => [
// "name" => "faker",
// "position" => "human",
// ],
// 2 => [
// "name" => "duke",
// "position" => "human",
// ],
// ]
details links : https://laravel.com/docs/5.3/collections, (*5)
PSR-7 Middleware (__invoke, Closure)
when reaches the middleware point, session start., (*6)
Slim3 Example
$app->add(Session::manager()->handler(new CustomHandler)->id('mySess')->middleware());
etc..
session blocking(http://konrness.com/php5/how-to-prevent-blocking-php-requests/) ๋๋ฌธ์ ๊ด์ฐฎ์ ํธ๋ค๋ฌ ์ฐพ์๋ณด๋ค๊ฐ ๋จผ๊ฐ ์กฐ๊ธ์ฉ๋ค ์์ฌ์์ ๊ทธ๋ฅ ์๋ก ๋งน๋ฌ... ์ธ์
๋ฝ๋ฌธ์ ์๊ณ ๋์ค์ ํธ๋ค๋ฌ๊ต์ฒด ๋๋ฉด์ ๊ธ๋ก๋ฒ์ธ์
๋ณ์ ์ฌ์ฉ๋ ๊ฐ๋ฅํ๋ฉด์ ๊ฐ๋จํ๊ณ ๋ ์ปดํฌ์ ๋ก ์ธ์ ์๋๊ฑธ๋ก..., (*7)