用于多模块应用程序的 Zend 框架会话管理
我有一个带有两个不同模块 1.default 和 2.admin 的 ZF 应用程序,并且我在默认模块中设置了一些会话值,但是我无法获取在管理模块的默认模块中设置的会话值。无论如何,是否可以使会话全局化,我的意思是应用程序中的所有模块都可以访问?
I'm having a ZF application with two different modules 1.default and 2.admin and I'm setting some session values in default module however I'm not able to get the session value which i set in default module in admin module.Is there anyway to make session GLOBAL, I mean accessible to all modules in the application?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我自己解决了这个问题
我们无法在另一个模块中获取一个模块的 Zend_session_Namespace ,而是我们可以在两个模块中获取 $_SESSION
所以在引导程序中
I solved it on my own
We cant get Zend_session_Namespace of one module in another ,rather we can get $_SESSION in both modules
So in the bootstrap