私はそのようなxmlを持っています:
<item>
<domain>
<currentPrice currency="EUR">17.9</currentPrice>
</domain>
</item>
以下を使用して、Twig で 17.9 の値をレンダリングできます。
item.domain.currentPrice
しかし、属性「通貨」にアクセスしてレンダリングするにはどうすればよいでしょうか?
item.domain.currentPrice['currency']
動かない。それから私は得ています:
Key "curreny" in object (with ArrayAccess) of type "SimpleXMLElement" does not exist
誰が私を助けることができます?