CakePHP添加类dateTime输入
答
下面CakePHP的代码将生成具有给定的默认值和数据后同样下拉框中将相同:
echo $this->Form->day('Profile.dob', array('empty'=>'Day','class' => 'cls-day'));
echo $this->Form->month('Profile.dob', array('empty'=>'Month','class' => 'cls-month'));
echo $this->Form->year('Profile.dob', 1950, date('Y'),array('empty'=>'Year','class' => 'cls-year'));