手機(jī)opencart,magento獲取url
2022-09-09 10:56:59 - 米境通跨境電商
Magento獲取當(dāng)前頁面URL地址
http://www.sunhaibing.com/?p=1260
在Magento中,可以通過core/url助手類中的getCurrentUrl()方法獲取當(dāng)前頁面的URL地址
$currentUrl=$this->helper('core/url')->getCurrentUrl();
//在社會化分享中,當(dāng)前頁面的URL地址非常有用
helper('core/url')->getCurrentUrl();?>">ShareonFacebook
--------------------------------------------------
Magento得到當(dāng)前頁面的URL,得到當(dāng)前產(chǎn)品頁面的URL
http://blog.csdn.net/hipihi_0/article/details/7719381
//獲取當(dāng)前URL
echoMage::helper('core/url')—>getCurrentUrl();
//判斷是否為首頁
if(Mage::getSingleton('cms/page')->getIdentifier()=='home'&&Mage::app()->getFrontController()->getRequest()->getRouteName()=='cms'):
//如果是1.4.x
if($this->getUrl('')==$this->getUrl('*/*/*',array('_current'=>true,'_use_rewrite'=>true))):
echo"Homepage";
else:
echo"NotinHomepage";
endif;
?>
補(bǔ)充說明:
$this->helper('core/url')->getCurrentUrl();