DateTimeクラスはそのまま出力しようとしても、表示されずに
場合によっては、以下のようなエラーになってしまいます。
「An exception has been thrown during the rendering of a template (“Catchable Fatal Error: Object of class DateTime could not be converted to string in /home/hoge/public_html/links/app/cache/prod/twig/80/e6/d7b4a9e6c74db045c844f544aa95.php line 68”) in MyLinksBundle:Site:index.html.twig at line 20. 」
twigテンプレートで以下のようにするとエラーになります。
1 |
<td>{{ site.updatedAt}}</td> |
そこで、以下のようにdate関数にわたしてやりフォーマットをしてい
すれば問題なく表示されます。
1 |
<td>{{ site.updatedAt|date('Y/m/d') }}</td> |
/