0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

CarbonのaddSecondsとaddRealSecondsの違い

Posted at

CarbonのaddSecondsとaddRealSecondsの違い

・addSecondsはミリ秒も保持されたまま秒数が追加される。
・addRealSecondsはミリ秒が削除されて秒数が追加される。

addRealSecondsはタイムスタンプベースの追加になる。タイムスタンプは秒単位なのでミリ秒は消える。

.sh
>>> $b = now('Asia/tokyo')
=> Illuminate\Support\Carbon @1607132885 {#4267
     date: 2020-12-05 10:48:05.334754 Asia/tokyo (+09:00),
   }
>>> $c = $b->copy()
=> Illuminate\Support\Carbon @1607132885 {#4265
     date: 2020-12-05 10:48:05.334754 Asia/tokyo (+09:00),
   }
>>> $b->addSeconds(10)
=> Illuminate\Support\Carbon @1607132895 {#4267
     date: 2020-12-05 10:48:15.334754 Asia/tokyo (+09:00),
   }
>>> $c->addRealSeconds(10)
=> Illuminate\Support\Carbon @1607132895 {#4265
     date: 2020-12-05 10:48:15.0 Asia/tokyo (+09:00),
   }

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?