public function index(){ // 使用している変数名 // $selected_year, $selected_month, $selected_day, $d, $this_year, $start_year // $birth_year, $birth_month, $birth_day, $i, $y_selected, $m_selected, $d_selected /* 既定値を設定 */ $selected_year = "2020";//年 $selected_month = "4";//月 $selected_day = "10";//日 /*----------------------------------------*/ $d = date_create(); $this_year = date_format($d, "Y"); $start_year = $this_year - 100; $birth_year = $birth_month = $birth_day = ""; for($i = $start_year; $i <= $this_year; $i++){ $y_selected = ""; if($i == $selected_year){ $y_selected = " selected"; } $birth_year .= ""; } for($i = 1; $i <= 12; $i++){ $i = sprintf('%02d', $i); $m_selected = ""; if($i == $selected_month){ $m_selected = " selected"; } $birth_month .= ""; } for($i = 1; $i <= 31; $i++){ $i = sprintf('%02d', $i); $d_selected = ""; if($i == $selected_day){ $d_selected = " selected"; } $birth_day .= ""; } $this->set(compact('birth_year', 'birth_month', 'birth_day')); }