<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 获取实体的数组/列表

        时间:2024-08-10

            <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 获取实体的数组/列表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:无效的参数号:绑定变量的数量与 Doctrine 中的标记数量不匹配 下一篇:什么是 Doctrine 水合作用?

                  相关文章

                  <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>
                    1. <small id='hpyXp'></small><noframes id='hpyXp'>

                    2. <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>