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 1 year has passed since last update.

laravel carbon formatはstringになる

Posted at

概要

  • carbonにてformat('Y')とするとstringで出力される。ちょっと詰まったのでまとめておく。

まとめ

  • まずは下記のようにCarbonかCarbonImmutableのインスタンスを作る。

    use Carbon;
    use Carbon\CarbonImmutable;
    $c = Carbon::now(); // もしくは $c = CarbonImmutable::now();
    
  • formatメソッドを用いて年を出力してみる。string型で出力される。

    var_dump($c->format('Y'));
    // string(4) "2022"
    
  • yearプロパティを用いて年を出力してみる。int型で出力される。

    var_dump($c->year);
    // int(2022)
    

ちなみに

  • monthプロパティで一桁月を出力すると0埋めされない。

    $c = new Carbon('2022-01-01');
    var_dump($c->month);
    // int(1)
    
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?