0

我有一个多对多关系。它返回我在 $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 ▶}
]

我只看到这类问题的非常古老的答案。

4

1 回答 1

0

我想通了 !在测试我的值时,如果我使用 while 循环,我会在代理对象上得到真正的布尔值。但是使用 foreach $vars 作为 var 循环阻止了教义制作代理并使我能够从中获取值。

于 2021-06-10T07:52:45.823 回答