composer require next/session
$sessionHandler = new \Next\Session\Handler\FileHandler();
$session = new \Next\Session\Session($sessionHandler);
$session->start(null); // 如果为null则创建id
$session->set('foo', 'bar');
$session->get('foo');
$session->save();
$session->close();
$sessionId = $session->getId();