Yii会话:不能设定寿命~30天

时间:2016-03-02 06:23:39

标签: php yii

尝试将生命周期从默认时间延长~8小时到30天 在这里工作:CWebUser

public function init() {
    parent::init();

    $lifetime = 15;       // work!  (even without setting gc_maxlifetime)
    $lifetime = 2592000;  // DONT work!  (auto logout in ~8 hours )

    $this->authTimeout = $lifetime;
    ini_set('session.gc_maxlifetime', $lifetime); 

    Yii::app()->getSession()->open();

    (other code...)
}

如果我设定低值 - 它可以工作,30天 - 不要。

0 个答案:

没有答案