Smartyで曜日を日本語表示
Smarty 日本語の漢字表記の曜日
Smarty
{* 2024/11/21 (Thu) *}
{$smarty.now|date_format:'%Y/%m/%d (%a)'}
{* 配列 *}
{* 曜日の配列 *}
{assign var=dow value=['日', '月', '火', '水', '木', '金', '土']}
{* 4(日曜は0) *}
{assign var=w $smarty.now|date_format:'%w'}
{* 2024年11月21日木曜日 *}
{$smarty.now|date_format:'%Y年%m月%d日'}{$dow.$w}曜日
{* 置換 *}
{* 2024年11月21日木曜日 *}
{$smarty.now|date_format:'%Y年%m月%d日%a曜日'|replace:'Sun':'日'|replace:'Mon':'月'|replace:'Tue':'火'|replace:'Wed':'水'|replace:'Thu':'木'|replace:'Fri':'金'|replace:'Sat':'土'}