<tfoot id='hHYpd'></tfoot>
  • <small id='hHYpd'></small><noframes id='hHYpd'>

  • <legend id='hHYpd'><style id='hHYpd'><dir id='hHYpd'><q id='hHYpd'></q></dir></style></legend>
        <bdo id='hHYpd'></bdo><ul id='hHYpd'></ul>
      1. <i id='hHYpd'><tr id='hHYpd'><dt id='hHYpd'><q id='hHYpd'><span id='hHYpd'><b id='hHYpd'><form id='hHYpd'><ins id='hHYpd'></ins><ul id='hHYpd'></ul><sub id='hHYpd'></sub></form><legend id='hHYpd'></legend><bdo id='hHYpd'><pre id='hHYpd'><center id='hHYpd'></center></pre></bdo></b><th id='hHYpd'></th></span></q></dt></tr></i><div id='hHYpd'><tfoot id='hHYpd'></tfoot><dl id='hHYpd'><fieldset id='hHYpd'></fieldset></dl></div>
      2. 从 Doctrine 获取实体的数组/列表

        Get array/list of entities from Doctrine(从 Doctrine 获取实体的数组/列表)

            <tbody id='JNnex'></tbody>

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

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

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

                • 本文介绍了从 Doctrine 获取实体的数组/列表的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  这可能很简单,但我找不到方法.

                  This is probably pretty simple, but I can't find a way to do this.

                  有什么方法可以获取 Doctrine 管理的实体的类名列表?比如:

                  Is there any way to get a list of class names of the entities that Doctrine manages? Something like:

                  $entities = $doctrine->em->getEntities();
                  

                  其中 $entities 是一个数组,其中包含 array('User', 'Address', 'PhoneNumber') 等...

                  where $entities is an array with something like array('User', 'Address', 'PhoneNumber') etc...

                  推荐答案

                  我知道这个问题很老了,但如果有人仍然需要这样做(在 Doctrine 2.4.0 中测试):

                  I know this question is old, but in case someone still needs to do it (tested in Doctrine 2.4.0):

                  $classes = array();
                  $metas = $entityManager->getMetadataFactory()->getAllMetadata();
                  foreach ($metas as $meta) {
                      $classes[] = $meta->getName();
                  }
                  var_dump($classes);
                  

                  来源

                  这篇关于从 Doctrine 获取实体的数组/列表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

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

                  相关文档推荐

                  When should use doctrine ORM and when zend-db-table?(什么时候应该使用学说 ORM,什么时候应该使用 zend-db-table?)
                  Doctrine - self-referencing entity - disable fetching of children(Doctrine - 自引用实体 - 禁用获取子项)
                  Doctrine 2, query inside entities(原则 2,实体内部查询)
                  Complex WHERE clauses using the PHP Doctrine ORM(使用 PHP Doctrine ORM 的复杂 WHERE 子句)
                  Doctrine - OneToMany relation, all result row doesn#39;t fetch in object(Doctrine - OneToMany 关系,所有结果行不获取对象)
                  Doctrine and unrefreshed relationships(教义和未更新的关系)
                  <legend id='hpyXp'><style id='hpyXp'><dir id='hpyXp'><q id='hpyXp'></q></dir></style></legend>
                  • <tfoot id='hpyXp'></tfoot>
                          <bdo id='hpyXp'></bdo><ul id='hpyXp'></ul>
                            <tbody id='hpyXp'></tbody>
                        • <small id='hpyXp'></small><noframes id='hpyXp'>

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