<h3><?php echo $this->__('Details & Documents') ?></h3>
上記は次のように出力されます。Details & Documents
次のように出力される適切な構文は何Details & Documents
ですか?
ありがとう
<h3><?php echo $this->__('Details & Documents') ?></h3>
上記は次のように出力されます。Details & Documents
次のように出力される適切な構文は何Details & Documents
ですか?
ありがとう
html_entity_decodeは、あなたが望むことをする必要があります:
<h3><?php echo html_entity_decode($this->__('Details & Documents')) ?></h3>
これにはMagento固有の設定があるかもしれませんが。