Answers for "carbon return day and month"

PHP
3

carbon get today's month

use CarbonCarbon;

// 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
0

how to get the number of days in the current month using carbon

CarbonCarbon::now()->daysInMonth
Posted by: Guest on September-18-2021

Code answers related to "carbon return day and month"

Browse Popular Code Answers by Language