LoginSignup
0
0

Twigで日付を計算する方法

Posted at

概要

LaravelやPHPでTwigテンプレートを使用した際に、テンプレート内で日付の計算(加算、減算)をする方法

使用方法

  • date_modifyフィルターを使用する
  • dayは日付型の値が代入されている変数
  • dayを基準日として加減算を行う
.twig
{#日加算#}
{{ day|date_modify("+1 day")|date("m/d/Y") }}

{#日減算#}
{{ day|date_modify("-1 day")|date("m/d/Y") }}

{#月加算#}
{{ day|date_modify("+1 month")|date("m/d/Y") }}

{#月減算#}
{{ day|date_modify("-1 month")|date("m/d/Y") }}

{#年加算#}
{{ day|date_modify("+1 year")|date("m/d/Y") }}

{#年減算#}
{{ day|date_modify("-1 year")|date("m/d/Y") }}

応用

文字列結合で日や月を加減算するパターン

.twig
{#numには整数が代入されている#}
{{day|date_modify("+" ~ num ~ "day")|date("Y.m.d"))}}

参照

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0