最模板 - 外贸网站建设,外贸网站模板

最模板

当前位置: 首页 > Magento > Magento教程 >

Magento使用封装的Session方法

时间:2014-08-21 20:45来源:未知 作者:最模板zuimoban 点击:
面向对象编程的好处之一就是化简为繁,针对接口,隐藏实现。Magento中提供的session封装方法就非常实用、简单。最近一个汽车配件的项目中,需要将高级搜索中的几个常用选项注册为

面向对象编程的好处之一就是化简为繁,针对接口,隐藏实现。Magento中提供的session封装方法就非常实用、简单。最近一个汽车配件的项目中,需要将高级搜索中的几个常用选项注册为session变量,这样客户再次访问的时候,能够自动记忆到曾经搜索的产品,提高用回体验及归属感。

Magento Session

Magento Session

这里介绍下在Magento中通过core/session模型注册,读取session变量的几个主要方法。

//Magento注册session
$make = 'BMW';
Mage::getSingleton('core/session')->setMake($make);
 
//Magento读取session
$make=Mage::getSingleton('core/session')->getMake();
 
//Magento注销session
Mage::getSingleton('core/session')->unsMake();
(责任编辑:最模板)
------分隔线----------------------------
栏目列表
推荐内容