-
Carbonクラスを使用する方法: CarbonはLaravelで提供される日付操作ライブラリです。データベースから取得したフィールドをCarbonオブジェクトに変換し、その後
year
メソッドを使用して年を取得します。use Carbon\Carbon; $collection = DB::table('your_table')->get(); foreach ($collection as $item) { $year = Carbon::parse($item->your_date_field)->year; // $yearを使用して必要な処理を行う }
-
MySQLのDATE_FORMAT関数を使用する方法: データベースクエリでDATE_FORMAT関数を使用して、フィールドから年を直接取得することもできます。
$collection = DB::table('your_table') ->select(DB::raw('YEAR(your_date_field) AS year')) ->get(); foreach ($collection as $item) { $year = $item->year; // $yearを使用して必要な処理を行う }
-
フィールドの値をPHPの標準関数で解析する方法: フィールドの値を
strtotime
関数で解析し、date
関数を使用して年を取得することもできます。$collection = DB::table('your_table')->get(); foreach ($collection as $item) { $year = date('Y', strtotime($item->your_date_field)); // $yearを使用して必要な処理を行う }
これらは一部の方法ですが、Laravelのコレクションを使用してデータベースのフィールドから年を取得するための一般的なアプローチです。必要に応じてこれらの例をカスタマイズして使用してください。