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.
我想从基于 web 目录的另一个 php 页面访问 symfony 会话数据。
我已经定义:
$this->getRequest()->getSession()->set('school', 'abc');
并且想在另一个存在于 web 目录(不是控制器)中的 php 页面中获取('school')。我已经在 Google 上搜索了几个小时并尝试了很多替代方案,但都没有成功。
我已经用这个解决方案解决了这个问题:
在 config.yml 中:
framework: session: save_path: ~
然后我开始了session_start();一个简单的 php 脚本。
session_start();
并通过以下方式访问:
$_SESSION['_sf2_attributes']['my_value'];
现在好啦。