如何在Magento使用Session?
*關於如何在Magento2使用Session請看本篇文章
一般而言,在網站中使用PHP函數設立Session,在Magento可以使用已經定義的函數來使用Session,我們將用幾個簡單的範例進行說明:
設置Session
//輸入你所要記錄的Session名稱與值
//此範例Session的名稱是TestString,值為歐斯瑞Astralweb
Mage::getSingleton(‘core/session’)->set TestString(‘歐斯瑞Astralweb’);
取得Session值
//使用get取得已設立Session的值
//此範例以取得名稱為 TestString 的Session為範例
Mage::getSingleton(‘core/session’)->getTestString(‘歐斯瑞Astralweb’);
清除Session值
//使用unset清除已設立Session的值
//範例為清除名稱為 TestString 的Session為範例
Mage::getSingleton(‘core/session’)->unsetTestString();
以上就是在Magento中Session的使用方式,希望能協助新手順利上手Magento!
想了解更多Magento教學?
更多Magento相關文章請看: Magento教學導覽
我要留言