我有一个多对多关系。它返回我在 $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 ▶}
}
]
转储($collectionProductAutoclave->getValues());
^ array:2 [▼
0 => true
1 => App\Entity\Product {#1318 ▶}
]
我只看到这类问题的非常古老的答案。