gpt4 book ai didi

symfony - 如何在symfony2中选择年份

转载 作者:行者123 更新时间:2023-12-02 10:28:07 24 4
gpt4 key购买 nike

我想选择显示从 1960 年到当前年份的年份,因此在提交后我应该有一个类似 :1989 的字符串。

我尝试了这样的方法,但不起作用:

 ->add('years', 'date', array(
'widget' => 'choice',
'format' => 'yyyy-MM-dd',
'years' => range(date('Y'), date('Y') - 30, -1)))

最佳答案

这非常简单。
如果提交表单后您想要一个年份字符串,只需生成一个自 1960 年以来的年份数组,如下所示:

class MyClassType extends AbstractType
{
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder
->add('year',
'Symfony\Component\Form\Extension\Core\Type\ChoiceType',[
'choices' => $this->getYears(1960)
])
# or (for symfony <= 2.7):
# ->add('year', 'choice', ['choices' => $this->getYears(1960)])

;
}

private function getYears($min, $max='current')
{
$years = range($min, ($max === 'current' ? date('Y') : $max));

return array_combine($years, $years);
}
}

模板:

enter image description here

表单提交后:

enter image description here

关于symfony - 如何在symfony2中选择年份,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34812735/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com