我想在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;
};
我该怎么做?!我把它放在任何地方,我得到一个意外的开关错误!