cakephp生日助手自定义默认值

时间:2013-07-01 13:53:42

标签: forms cakephp form-helpers

我想在生日菜单助手中添加“月”,“日”,“年”作为首选?可以这样做吗?我没有看到任何如何做到这一点的例子?以下是我的代码:

    <?php echo $this->Form->input('date_of_birth', 
        array(
            'type' => 'date',
            'label' => 'Date of Birth:<span>*</span>',
            'dateFormat' => 'MDY',
            'empty' => true,
            'minYear' => date('Y')-130,
            'maxYear' => date('Y'),
            'options' => array('1','2')
            )
        );
    ?>

谢谢, 巴特

1 个答案:

答案 0 :(得分:4)

在这里,the empty option accepts an array您可以使用密钥monthyeardayhour指定各个字段的空值, minutemeridian

echo $this->Form->input('date_of_birth', 
    array(
        'type' => 'date',
        'label' => 'Date of Birth:<span>*</span>',
        'dateFormat' => 'MDY',
        'empty' => array(
            'month' => 'Month',
            'day'   => 'Day',
            'year'  => 'Year'
        ),
        'minYear' => date('Y')-130,
        'maxYear' => date('Y'),
        'options' => array('1','2')
    )
);