我是Magento的初学者。因此,magento支持此功能可能是不正确的问题。我正在相同环境下使用magento和codeigneiter构建网站结构。我的要求是在我的框架中获取magento的会话详细信息,因此使用magento + customization framework脚本是否可行。
答案 0 :(得分:0)
Magento会话由会话类处理。在会话中设置新的变量和值。
Mage::getSingleton("core/session")->setYourVariableName("your value here");
// set your own session variable name in CamelCase.
//eg. you want to set author_name variable than use setAuthorName("value here")
我建议你通过参考:https://ellislab.com/codeigniter/user-guide/libraries/sessions.html 并且在用这个付钱之前研究它。