我需要设置会话生命周期,现在我在控制器中有这个:
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添加到配置中,但仍然无效。
我怎么能这样做?
由于