You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
< ? php
return [
'tracks' => [
'芯片与组件' ,
'制造与封装' ,
'材料与设备' ,
'场景与应用' ,
],
'degrees' => [ '大专' , '本科' , '硕士' , '博士' , '其他' ],
'location_countries' => [ '中国' , '海外' ],
/** 参赛地点(报名表 event_location 可选值) */
'event_locations' => [ '上海' , '苏州' , '深圳' ],
/** 观众报名「观赛目的」可选值 */
'audience_purposes' => [
'项目交流' ,
'产业合作' ,
'投资对接' ,
'学习参访' ,
'媒体报道' ,
'其他' ,
],
/** 单文件上限( KB) ; 须保证 PHP upload_max_filesize、post_max_size 均大于此值(见 public/.user.ini 与 composer serve-dev) */
'file_max_kb' => 20480 ,
'file_mimes' => [ 'pdf' , 'ppt' , 'pptx' , 'doc' , 'docx' , 'wps' , 'rar' , 'zip' ],
/** 报名信息 ZIP 导出限制(可通过 .env 调整) */
'export' => [
'part_size' => ( int ) env ( 'EXPORT_PART_SIZE' , 10 ),
'chunk_size' => ( int ) env ( 'EXPORT_CHUNK_SIZE' , 20 ),
'max_files' => ( int ) env ( 'EXPORT_MAX_FILES' , 5000 ),
'max_total_bytes' => ( int ) env ( 'EXPORT_MAX_BYTES' , 2 * 1024 * 1024 * 1024 ),
'time_limit' => ( int ) env ( 'EXPORT_TIME_LIMIT' , 0 ),
],
];