我得到
echo $this->Form->input('birthdate', array( 'label' => __('Geburtsdatum', true)
, 'dateFormat' => 'DMY'
, 'minYear' => date('Y') - 70
, 'maxYear' => date('Y') - 10 ));
在模型中,我将出生日期设置为日期。现在Cakephp吐出了三个选择框,我非常喜欢。但它也会在中间吐出两个丑陋的破折号/连字符,我想去掉它们。
SELECTBOX-SELECTBOX-SELECTBOX-
有什么建议吗?
您可以指定一个separator
选项:
'separator' => 'YOUR_SEPARATOR'