我不明白我的问题。如果你能给我一个想法。我有一个工作日期时间字段,但我的领域年份有一个奇怪的范围(2015-2025)。我想要一个更大的范围(例如:1960-2040)。
class BookType extends AbstractType
{
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder
->add('title')
->add('author')
->add('publicationDate')
->add('format')
->add('language')
->add('user')
->add('excelFile', FileType::class,[
'label' => 'Fichier excel (xls/xlsx file)',
'mapped' => false,
'required' => false,
'constraints' => [
new File([
'maxSize' => '1024k',
'mimeTypes' => [
'application/vnd.ms-excel',
'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',
],
'mimeTypesMessage' => 'Please upload a valid xls/xlsx document',
])
]
])
;
}
慕雪6442864