LoginSignup
6
5

More than 5 years have passed since last update.

Cakephp3.2 CarbonからChronosに。dayOfWeekについて

Last updated at Posted at 2016-05-27

CakePHP3 では日付時刻を扱うライブラリでCarbonが使われていましたが、
Cakephp3.2 以降、Chronosというライブラリに置き換えられています。

基本的には互換性があるのですが、日付を受け取って曜日をint型で返すプロパティdayOfWeek
に差異がありましたので共有します。

ISO-8601に準拠しているのは。 1 (for Monday) through 7 (for Sunday)のようです。

基本的には、Time::SUNDAYのように定数を使って比較を行うようにします。
$obj->dayOfWeek % 7で[0-6]に置換もできます。

6
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
5