1. <tfoot id='mB1tz'></tfoot>

      <i id='mB1tz'><tr id='mB1tz'><dt id='mB1tz'><q id='mB1tz'><span id='mB1tz'><b id='mB1tz'><form id='mB1tz'><ins id='mB1tz'></ins><ul id='mB1tz'></ul><sub id='mB1tz'></sub></form><legend id='mB1tz'></legend><bdo id='mB1tz'><pre id='mB1tz'><center id='mB1tz'></center></pre></bdo></b><th id='mB1tz'></th></span></q></dt></tr></i><div id='mB1tz'><tfoot id='mB1tz'></tfoot><dl id='mB1tz'><fieldset id='mB1tz'></fieldset></dl></div>
      • <bdo id='mB1tz'></bdo><ul id='mB1tz'></ul>

    2. <legend id='mB1tz'><style id='mB1tz'><dir id='mB1tz'><q id='mB1tz'></q></dir></style></legend>

      <small id='mB1tz'></small><noframes id='mB1tz'>

        如何在 Symfony2 配置中添加具有值的数组?

        How to add an array with values in Symfony2 configuration?(如何在 Symfony2 配置中添加具有值的数组?)

        1. <legend id='ZqDnz'><style id='ZqDnz'><dir id='ZqDnz'><q id='ZqDnz'></q></dir></style></legend>

            <i id='ZqDnz'><tr id='ZqDnz'><dt id='ZqDnz'><q id='ZqDnz'><span id='ZqDnz'><b id='ZqDnz'><form id='ZqDnz'><ins id='ZqDnz'></ins><ul id='ZqDnz'></ul><sub id='ZqDnz'></sub></form><legend id='ZqDnz'></legend><bdo id='ZqDnz'><pre id='ZqDnz'><center id='ZqDnz'></center></pre></bdo></b><th id='ZqDnz'></th></span></q></dt></tr></i><div id='ZqDnz'><tfoot id='ZqDnz'></tfoot><dl id='ZqDnz'><fieldset id='ZqDnz'></fieldset></dl></div>
              <tbody id='ZqDnz'></tbody>

              <small id='ZqDnz'></small><noframes id='ZqDnz'>

                  <bdo id='ZqDnz'></bdo><ul id='ZqDnz'></ul>
                  <tfoot id='ZqDnz'></tfoot>
                • 本文介绍了如何在 Symfony2 配置中添加具有值的数组?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我想在配置文件 (config.yml) 中添加一个简单的值列表.例如:

                  I would like to add a simple list of values in a configuration files (config.yml). For example :

                  my_bundle:
                      columns: ["col1", "col2"]
                  

                  将节点添加到配置解析器时,它只是失败了:

                  When adding the node to the configuration parser, it simply fails :

                  $rootNode = $treeBuilder->root('my_bundle');
                  $rootNode->arrayNode('columns')->children()->end();
                  

                  这是错误:

                  InvalidConfigurationException: Unrecognized options "0, 1" under "my_bundle.columns"
                  

                  我错过了什么?这甚至可能吗?

                  What am I missing? Is this even possible?

                  推荐答案

                  如果你想实现这样的节点,只需:

                  If you want to achieve a node like this, just do:

                  $rootNode
                      ->children()
                          ->arrayNode('columns')
                              ->prototype('scalar')
                              ->end()
                          ->end()
                      ->end()
                  ;
                  

                  这篇关于如何在 Symfony2 配置中添加具有值的数组?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  How do I parse XML containing custom namespaces using SimpleXML?(如何使用 SimpleXML 解析包含自定义命名空间的 XML?)
                  SimpleXML SOAP response Namespace issues(SimpleXML SOAP 响应命名空间问题)
                  Problems with PHP namespaces and built-in classes, how to fix?(PHP 命名空间和内置类的问题,如何解决?)
                  Use php namespace inside function(在函数内部使用 php 命名空间)
                  unexpected #39;use#39; (T_USE) when trying to use composer(尝试使用作曲家时意外的“使用(T_USE))
                  PHP adding custom namespace using autoloader from composer(PHP使用来自作曲家的自动加载器添加自定义命名空间)

                    <tbody id='uGEBS'></tbody>

                      <bdo id='uGEBS'></bdo><ul id='uGEBS'></ul>

                        <tfoot id='uGEBS'></tfoot>
                        <i id='uGEBS'><tr id='uGEBS'><dt id='uGEBS'><q id='uGEBS'><span id='uGEBS'><b id='uGEBS'><form id='uGEBS'><ins id='uGEBS'></ins><ul id='uGEBS'></ul><sub id='uGEBS'></sub></form><legend id='uGEBS'></legend><bdo id='uGEBS'><pre id='uGEBS'><center id='uGEBS'></center></pre></bdo></b><th id='uGEBS'></th></span></q></dt></tr></i><div id='uGEBS'><tfoot id='uGEBS'></tfoot><dl id='uGEBS'><fieldset id='uGEBS'></fieldset></dl></div>

                        <small id='uGEBS'></small><noframes id='uGEBS'>

                          <legend id='uGEBS'><style id='uGEBS'><dir id='uGEBS'><q id='uGEBS'></q></dir></style></legend>