我想在Template-toolkit中显示周数和日期插件的日期。今天的输出将是:
36 Monday
我使用以下代码获得了周数:
[% USE date(format = '%W' ) %]
[% date.format %]
仍在努力弄清楚如何获得工作日。
答案 0 :(得分:6)
来自http://template-toolkit.org/docs/modules/Template/Plugin/Date.html
Date插件提供了一种通过委托POSIX strftime()例程生成格式化时间和日期字符串的简便方法。
来自http://perldoc.perl.org/POSIX.html#strftime
有关这些和其他参数的详细信息,请参阅系统的strftime()联机帮助页。
来自http://linux.die.net/man/3/strftime
%A根据当前区域设置的完整工作日名称。