0
0

More than 1 year has passed since last update.

PHP laravel CarbonのオブジェクトをCarbonImmutableに変換する

Last updated at Posted at 2022-12-12

この記事はmiriwoお一人様 Advent Calendar 2022の12日目の記事です

概要

  • CarbonのオブジェクトをCarbonImmutableに変換する方法をまとめる

方法

  • toImmutable()関数を用いることでCarbonのオブジェクトをCarbonImmutableに変換する事ができる

  • 下記の様に使用する。(laravelのtinkerで確認)

    use Carbon\Carbon;
    
    $now = Carbon::now();
    $nowImmutable = $now->toImmutable();
    
    $nowImmutable->isImmutable(); // true
    
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