gpt4 book ai didi

php - Symfony2 Doctrine,如何只获取特定表的列名

转载 作者:行者123 更新时间:2023-11-29 02:24:55 26 4
gpt4 key购买 nike

你好我只想要表字段名(列名)如何实现,截至目前我有以下代码-

$em        =   $this->getDoctrine()->getManager();

$entities = $em->getRepository('SkerpInventoryBundle:InventoryMaster')->findAllIndex();

我正在使用存储库来获取表的所有数据。现在在“$entities”中我有结果数据。谁能告诉我如何只获取字段名称。

最佳答案

我猜,这就是你需要的(假设你在你的 Controller 中):

    $mappings = $this->getDoctrine()->getManager()->getClassMetadata('AcmeBundle:SomeEntity');
$fieldNames = $mappings->getFieldNames();

关于php - Symfony2 Doctrine,如何只获取特定表的列名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24198816/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com