Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已将 symfony2.0 项目升级到 symfony2.1.3。所有模块都与旧版本相同,但$_SESSION在新版本中不起作用。
$_SESSION
如何在我的 Symfony 应用程序中获取会话的所有数据?我希望在 2 个应用程序之间共享会话。
use Symfony\Component\HttpFoundation\Session\Session; $session = new Session(); $session->start(); $data = $session->all();
该$data变量现在将包含会话数据。
$data