PHP+Memcache统计当前在线人数 magento教程

PHP+Memcache统计当前在线人数

废话不多说,直接上代码! $memcache = new Memcache (); $memcache -connect ( 127.0.0.1, 11211 ); // 获取 在线用户 IP 和 在线时间数据 $online = $memcache -get ( online ); // 为空,初始化数据 if (! $online ) { $...

阅读全文
获得Magento全部Api方法 magento教程

获得Magento全部Api方法

获取Magento全部Api方法的代码 其中的ApiUser和ApiKey为网站后台添加的WebService用户的连接信息,换成你自己的。 Magento官方文档见: Magento core Api ! DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01 Transition...

阅读全文
magento中给form添加输入验证 magento教程

magento中给form添加输入验证

在magento中添加一个form,可以使用magento本身就有的输入验证功能,今天给大家介绍下如何使用. magento中form使用验证: form action =?php echo Mage::getUrl(********) ? method =post id =test-form ul li label...

阅读全文
Magento多语言URL切换问题 magento教程

Magento多语言URL切换问题

今天最模板zuimoban网站模板来分享一下Magento 多语言URL切换的问题,通常在SEO角度还是用户体验方面,URL的友好很重要。用户能看懂是一方面,最重要还是搜索引擎能够懂。 平时的时候...

阅读全文