Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Symfony2 开发应用程序。当创建需要使用日期字段来指示用户出生日期的注册表单时,问题就出现了,年份的可能值在 2007-2017 范围内。我怎样才能修改这个值,例如,在 1920 年的实际年份范围内?谢谢。
下次查文档:
$builder->add('birthday', 'date', array( 'years' => range(1920, date('Y')) ));