Cakephp 3 i18nFormat字符串表示指定日期的周数

时间:2016-11-08 04:21:22

标签: date-formatting cakephp-3.x week-number

如何获取cakephp 3中特定日期的周数?

$this->mydate->i18nFormat('yyyy-MM-dd')将显示年月日期。

但是周数的字符串格式怎么样? 感谢。

1 个答案:

答案 0 :(得分:1)

仔细查看 public DocumentDispatchObject DocumentDispatchPolicyNoPost(string CorrelationID, string PolicyNumber) { DocumentDispatchObject RInfo = new DocumentDispatchObject(); ..... return RInfo; } 的文档,它会告诉您可以作为格式传递的内容,以及在何处查找已接受的格式模式列表:

  

[...]您可以将IntlDateFormatter constants作为第一个传递   此函数的参数,或传递完整的ICU日期格式字符串   如以下资源中所指定:   的 http://www.icu-project.org/apiref/icu4c/classSimpleDateFormat.html#details

<强> Cookbook > Date & Time > Formatting > Cake\I18n\Time::i18nFormat()

长话短说,一年中一周的模式字母为Cake\I18n\Time::i18nFormat(),如果您想要一个前导零,则为w,而对于该月的一周,它为wwW