访问Codeigneiter中的magento会话变量

时间:2015-10-20 10:34:59

标签: php codeigniter session-variables magento-1.9 adminhtml

我是Magento的初学者。因此,magento支持此功能可能是不正确的问题。我正在相同环境下使用magento和codeigneiter构建网站结构。我的要求是在我的框架中获取magento的会话详细信息,因此使用magento + customization framework脚本是否可行。

1 个答案:

答案 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 并且在用这个付钱之前研究它。