我在mysql中有一个DateTime字段。使用带有以下代码的.ini文件:
_dateformat = {0,date,custom,%m-%d-%Y}
我可以在我的模板中使用此功能,根据加载的语言.ini更改MyDate的打印格式:
{{@_dateformat,strtotime(@MyDate) |format}}
我现在正试图找到一种方法,只显示该日期的完整月份名称。 我尝试了这些选项(查看ICU项目规范)
_monthname = {0,date,custom,%M} (up to four M's)
_monthname = {0,date,custom,%L} (up to four L's)
_monthname = {0,date,custom,%F} (displays the date in yyyy-mm-dd format)
但没有任何东西可以返回月份名称。
如何使用模板引擎在无脂肪框架中仅显示日期的月份名称,特定语言?