Twig で 月末日を算出する方法

カテゴリ テーマ コアバージョン 8.9.x 関連モジュール Twig

翌月にしてから1日引く。

{% set cx = now | date('Y/m/01') %}
{% set 月末日 = cx | date_modify('+1 month') | date('Y/m/d') | date_modify('-1 day') | date('Y-m-d') %}

OTHER FAQ