我如何在 CakePHP 日期中显示星期几?

How do I show the day of the week in CakePHP date?

我想让 CakePHP 默认显示日期字段的星期几,例如 Monday, May 18, 2015。我必须向 setToStringFormat 函数提供什么格式的字符串,这些格式从何而来?他们似乎没有遵循 PHP date 功能。

示例:

Time::setToStringFormat('MMMM d, YYYY');
// Formats like: May 18, 2015

尝试:

// called via TimeHelper
echo $this->Time->format('2011-08-22', '%B %e, %Y');

Detail Link URL.

对于您正在寻找的格式,您可以简单地使用:

Time::toFormattedDateString();

另请查看 http://carbon.nesbot.com/docs/ 了解更多详细信息,因为蛋糕目前使用碳