我想在 codeigniter form_dropdown 中使用 switch 语句。我的代码看起来像:
$schedule_options = array();
foreach($schedules as $schedule){
$schedule_options[$schedule->scheduleId] = .$schedule->scheduleDays.' - '.$schedule->scheduleTime;
}
echo form_dropdown('classScheduleId', $schedule_options, set_value('classScheduleId', $class->classScheduleId));
我想在将 $schedule_options 打印到 form_dropdown 之前切换它。
例如:
switch($schedule_options) {
case 'even':
echo 'Even Days';
break;
case'odd':
echo 'Odd Days';
break;
};
我怎样才能做到这一点?!无论我把它放在哪里,我都会收到一个意外的开关错误!