CakePHP在下拉中增加年份范围

时间:2011-05-02 09:23:07

标签: cakephp date range

在CakePHP中,如果我将表字段类型保留为date,则会显示包含月,日和年的下拉列表。但是,年份范围仅从1990开始,如何将其更改为从1900开始?

1 个答案:

答案 0 :(得分:26)

您可以使用以下输入的minYearmaxYear选项:

<?php

echo $this->Form->input('birth_dt', array(
    'label' => 'Date of birth', 
    'dateFormat' => 'DMY',
    'minYear' => date('Y') - 70,
    'maxYear' => date('Y') - 18 ));

?>

参考cakePHP Cookbook

仅供参考:如果当前年份是2017年('Y') - 70将是1947年[2017年 - 70 = 1947年]。