我在这里指的是 Xtendo Order Export ext 。我知道这是获取国家代码的片段
<xsl:value-of select="shipping/country_id"/>
我的要求是获取 Magento 中的国家名称
Mage::getModel('directory/country')->load($country_code)->getName();
但是在 xsl 中如何调用上面的 getName() 方法
嘿,天才们请帮我找到正确的方法:
<xsl:value-of select="php:functionString('Mage_Directory_Model_Country::load', shipping/country_id)"/>
像这样的……?