从对象symfony2中提取元素

时间:2015-06-25 07:23:22

标签: symfony

CODE

$attempts = $this->getDoctrine()->getRepository('MainHomeBundle:Clients')->findOneBy(array("mail"=>$getuser));

RESULT

print_r($attempts->getResetattemp());

DateTime对象([date] => 2015-06-25 02:15:30.000000 [timezone_type] => 3 [timezone] =>美国)

var_dump($attempts->getResetattemp());

object(DateTime)#273(3){[“date”] => string(26)“2015-06-25 02:15:30.000000”[“timezone_type”] => int(3)[“timezone”] => string(19)“America”}

如何过滤结果才能获得此结果?

2015-06-25 02:15:30

1 个答案:

答案 0 :(得分:2)

这是简单的DateTime对象。您可以使用format()方法根据需要对其进行格式化:

$attempts->getResetattemp()->format('Y-m-d H:i:s')

要了解有关DateTime对象的更多信息,请参阅http://php.net/manual/en/book.datetime.php

上的文档