访问该字段的月份
我在数据库表"日期铭文"中有一个类型为"日期时间"的字段我想从控制器文件
如果我们假设您有一个实体用户作为示例,希望您有日期铭文属性,那么您需要从控制器中的数据库中获取用户对象,如下所示:
//get the entity manager
$em = $this->getDoctrine()->getManager();
//get your object : we supposed that dateinscription is an attribute from user entity
$user = $em->getRepository(YouFolder/UserBundle/Entity/User)->find(Id of the user);
//get inscription date
$dateinscription = $user->getDateInscription();
//get Month as string exemple 06
$month = $dateinscription->format('m');