我从数据库中提取数据。
$tDate = $repository->findOneBy(array('Key' => $Key));
$tempdate = $tDate->getfromDate(); // Datetime class ex 8/30
$tempdate->modify('-2 days'); // deduct 2 days.
在树枝上。
{{ tempdate.date | date('n/j') }} // shows 8/28
{{ tempdate.date | date('n/j') }} // shows 8/28 not 8/30 ... why??????
为什么第二行也显示 8/28?
我的意思是它显示 8/30。