使用 easy admin 3 从 Symfony 5 中的代理对象获取值时出现问题

Problem getting value from a proxies object in Symfony 5 with easy admin 3

我有一个多对多关系。它 return 我在 $collectionProductAutoclave 中的集合类型。当我转储它时,我得到了我的对象,所以没问题。但是,其中一些是代理,我无法从中获取价值,只有真正的布尔值。 我想将这个对象的 id 与另一个进行比较。 这里是我的 var 的转储:

转储($collectionProductAutoclave);

^ array:2 [▼
  0 => Proxies\__CG__\App\Entity\Product {#1423 ▼
    +__isInitialized__: true
    -id: 1
    -titre: "dfg"
    -diametreTube: "45"
    -workCharge: 4
    -tension: 45
    -montageCharge: 1
    -stockFuseaux: false
    -type: "dfg"
    -commandes: Doctrine\ORM\PersistentCollection {#1547 ▶}
    -materiau: Proxies\__CG__\App\Entity\Materiau {#1565 ▶}
    -papier: 789
    -diametreFuseaux: 45
    -Intensity: 456
    -HauteurMax: "465"
    -HauteurStandard: "465"
    -autoclaves: Doctrine\ORM\PersistentCollection {#1564 ▶}
     …2
  }
  1 => App\Entity\Product {#1318 ▼
    -id: 2
    -titre: "dsfgzerezer"
    -diametreTube: "45"
    -workCharge: 1
    -tension: 456
    -montageCharge: 2
    -stockFuseaux: false
    -type: "zer"
    -commandes: Doctrine\ORM\PersistentCollection {#1455 ▶}
    -materiau: Proxies\__CG__\App\Entity\Materiau {#1565 ▶ …2}
    -papier: 45
    -diametreFuseaux: 21
    -Intensity: 987
    -HauteurMax: "123"
    -HauteurStandard: "123"
    -autoclaves: Doctrine\ORM\PersistentCollection {#1566 ▶}
  }
]

dump($collectionProductAutoclave->getValues());

^ array:2 [▼
  0 => true
  1 => App\Entity\Product {#1318 ▶}
]

我只看到这种问题的很老的答案。

我想通了!在测试我的值时,如果我使用 while 循环,我会在代理对象上得到 true bool。但是使用 foreach $vars 作为 var 循环阻止了学说来制作代理并使我能够从中获取价值。