- 現在の月の日数を取得する最も基本的な方法は、
Carbon
オブジェクトを作成し、daysInMonth
メソッドを使用することです。以下は、その例です:
use Carbon\Carbon;
$now = Carbon::now();
$daysInMonth = $now->daysInMonth;
echo "現在の月の日数: " . $daysInMonth;
- 特定の日付で月の日数を取得する場合は、
Carbon
オブジェクトを作成して、その日付のdaysInMonth
メソッドを使用します。以下は、特定の日付での例です:
use Carbon\Carbon;
$date = Carbon::create(2022, 8, 15); // 例: 2022年8月15日
$daysInMonth = $date->daysInMonth;
echo "指定した日付の月の日数: " . $daysInMonth;
Carbon
オブジェクトを作成せずに、Carbon
クラスのdaysInMonth
静的メソッドを使用する方法もあります。以下はその例です:
use Carbon\Carbon;
$daysInMonth = Carbon::daysInMonth(2023, 5); // 例: 2023年5月
echo "指定した年月の日数: " . $daysInMonth;