19 declare(strict_types=1);
27 $this->key = $session_key;
36 if (!is_array($frm_sess)) {
40 if (!isset($frm_sess[$this->key]) || !is_array($frm_sess[$this->key])) {
52 public function get(
int $thread_id, $default = null)
56 return $frm_sess[
$this->key][$thread_id] ?? $default;
63 public function set(
int $thread_id, $value):
void
static get(string $a_var)
__construct(string $session_key)
static set(string $a_var, $a_val)
Set a value.