我正在尝试将地址标签上的“英国”替换为“英国”
我们注意到运往英国的货物(信不信由你)经常到达美国。
这是到目前为止的代码:
if ($value!=='') {
if ($value =='United Kingdom') {
$page->drawText(Mage::helper('addresslabel')->__('Great Britain'), $this->x, $this->y, 'UTF-8');
}
else {
$page->drawText(strip_tags(ltrim($value)), $this->x, $this->y, 'UTF-8');
}
}
但它不起作用。有人可以帮我解决这个问题吗?