Answers for "how to get current month using carbon"

PHP
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

Code answers related to "how to get current month using carbon"

Browse Popular Code Answers by Language