Closed mat-k-witts closed 1 year ago
$userData = ['a' => 1, 'b' => 2, 'c' => 3]
If a key is set such as $this->session->set('userData', $userData);
Can I use $this->session->delete('key') to remove value for key 'c'?
At the moment this feature is not supported. All write operations refer to the "root" key.
$userData = ['a' => 1, 'b' => 2, 'c' => 3]
If a key is set such as $this->session->set('userData', $userData);
Can I use $this->session->delete('key') to remove value for key 'c'?