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 月の数字の先頭を0で埋めないフォーマット

Posted at

概要

  • Carbonの月を表すフォーマットにて1桁月の先頭を0で埋めないフォーマットの指定方法をメモ的にまとめる。

方法

  • フォーマットはnを用いることで1桁月の先頭を0で埋めないで出力してくれる。

  • 下記に例をまとめる。(laravelのtinkerにて確認)

    use Carbon\CarbonImmutable;
    
    $c = new CarbonImmutable('2022-01-01');
    echo $c->format('n'); // 1と出力される。
    echo $c->format('m'); // 01と出力される。
    
  • 2桁月はとくに変化なく出力される。

    use Carbon\CarbonImmutable;
    
    $c = new CarbonImmutable('2022-10-01');
    echo $c->format('n'); // 10と出力される。
    echo $c->format('m'); // 10と出力される。
    
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?