为了账号安全,请及时绑定邮箱和手机立即绑定

按日期时间排序数据 Symfony 2

按日期时间排序数据 Symfony 2

PHP
慕雪6442864 2021-06-28 18:17:36
我有一个包含数据的数组。我想使用类型为日期时间的属性“CreatedAt”按日期(列表开头的新数据)显示我的数据。这是我的控制器:{    $em = $this->getDoctrine()->getManager();    $user= $this->get('security.context')->getToken()->getUser();    $congesshows = $em->getRepository('appUserBundle:Conges')        ->findBy(array(),array('CreatedAt'=>'DESC'))    ;    $role = $user->getRoles() ;    if($role[0]== "ROLE_ADMIN") {        $congess = $em->getRepository('appUserBundle:Conges')            ->findBy( array('etat' => 'En cours'))        ;    }    else {        $congess = $em->getRepository('appUserBundle:Conges')            ->findBy(array('etat' => 'En attente'))        ;    }    return $this->render(        'appUserBundle:interne:please.html.twig',        array('conges' => $congess,'congesshows'=>$congesshows)   );}
查看完整描述

1 回答

  • 1 回答
  • 0 关注
  • 111 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信