我正在使用Phalcon PHP,並且我想在創建會話後向會話中添加其他項目。我有這樣的:如何在創建會話後編輯會話
private function _registerSession($user, $account) {
$this->session->set('auth', array(
'user_id' => $user->id,
'username' => $user->name
)); }
在另一個控制器我想編輯這個會話例如:
$auth = $this->session->get('auth');
$auth->add('account_id', '10');
而本屆會議將內容3個變量爲:
$this->session->set('auth', array(
'user_id' => $user->id,
'username' => $user->name,
'account_id' => 10
)); }
但我不我不知道該怎麼做。
這不起作用:PHP致命錯誤:調用一個成員函數集()非對象 – John
'$ AUTH = $這 - >會話而上>得到( 'AUTH'); $ auth ['account_id'] ='10'; $ this-> session-> set('auth',$ auth);' –
完美!非常感謝:) – John