假设magento产品的id 存在变量$id中 那么
$_product = Mage::getModel('catalog/product')->load($id); 打印数据信息:
var_dump($_product->getData()); // 也可以记录在log中 Mage::log($_porduct->getData()); 这时你就可以相应的key获取 信息 例如 id
$id = $_product->getData('entity_id'); 也可以使用 $_product->getId() 获取到 // 产品的Url $url = $_product->getProductUrl(); 附带一下 magento 获取当前包 和 theme name的方法 $curPackage = Mage::getSingleton('core/design_package')->getPackageName(); $curTheme = Mage::getSingleton('core/design_package')->getTheme('frontend');(责任编辑:最模板) |