如何获取id实体形式

时间:2016-01-16 17:33:03

标签: php symfony

你好,我去了字段中的y实体的id

这是var_dump($form->getData());

array (size=4)
      'region' => string 'ddsdd' (length=5)
      'name' => string 'zadzd' (length=5)
      'lastName' => string 'zdazd' (length=5)
      'Type' => 
        object(bundle\FrontBundle\Entity\Foo)[591]
          protected 'id' => int 2                        // how get this ID 
          protected 'type' => string 'Frein' (length=5)

thanx you

1 个答案:

答案 0 :(得分:1)

如果这是doctrine实体,您可以通过调用getId()方法来访问它。

$form->getData()['Type']->getId()