この記事はmiriwoお一人様 Advent Calendar 2022の12日目の記事です
概要
- CarbonのオブジェクトをCarbonImmutableに変換する方法をまとめる
方法
-
toImmutable()
関数を用いることでCarbonのオブジェクトをCarbonImmutableに変換する事ができる -
下記の様に使用する。(laravelのtinkerで確認)
use Carbon\Carbon; $now = Carbon::now(); $nowImmutable = $now->toImmutable(); $nowImmutable->isImmutable(); // true