3

symfony2 では、以下の構成 yaml を使用しました。

// config.yml
parameters:
  something: 
    content: 
      price:  2.30
      mainText: 'Some text here.'
      redText:  'This is a text here plus price: ' %price%

%price% が間違っていて、エラーが表示されますが、システムはそれが配列であることを示しています。

4

3 に答える 3

7

これがあなたがそれを行う方法です

parameters:
    something.content.price: 2.30
    something:
        content:
            mainText: 'Some text here.'
            redText:  'This is a text here plus price: %something.content.price%'

ここでsomething.content.priceは、float を含むパラメーターとsomething配列を含むパラメーターが 2 つしかありません。

これは、DI 構成内のこれら 2 つにのみ直接アクセスできることを意味します。

于 2012-07-08T17:20:18.727 に答える
-2

多分%something.content.price%

于 2012-07-07T00:04:13.363 に答える