Answers for "get carbon now with year"

PHP
3

laravel carbon get year number

use Carbon\Carbon;
// Date = 7th of July 2021
$year = Carbon::now()->format('Y'); // 2021
$year = Carbon::now()->format('y'); // 21
$year = Carbon::now()->year; // 2021
Posted by: Guest on July-07-2021
3

carbon get today's month

use Carbon\Carbon;

// if today is January 22, 2021
Carbon::now()->format('M'); // "Jan"
Carbon::now()->format('m'); // "01"
Carbon::now()->month; // 1
Posted by: Guest on January-22-2021

Browse Popular Code Answers by Language