Symfony2 / Session - 设置会话生存期

时间:2015-08-20 15:41:49

标签: symfony session

我需要设置会话生命周期,现在我在控制器中有这个:

alldat2 = merge(data.2015, data.2014, all = TRUE, by = c("area", "group"), 
            suffixes = c("", ".2014"))
...
names(alldat2)
[1] "area"       "group"      "score"      "score.2014" "plotscore"  "direction" 

和config.yml

$request->getSession()->set('name', $form['name']->getData());

但是这个会话会在1天后或者我关闭浏览器后到期吗?但我需要将会话寿命设置为1年。

在Google中我找到了解决方案,将cookie_lifetime添加到配置中,但仍然无效。

enter image description here

我怎么能这样做?

由于

0 个答案:

没有答案