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.
我在Jquery 文件上传上有这一行:
'accept_file_types' => '/.+$/i',
如何修改它以使其接受除 PHP 和 Javascript 文件之外的所有文件类型?
原来的
改变
'accept_file_types' => '/\.(gif|jpe?g|png)$/i'
或添加新的扩展
'accept_file_types' => '/\.(gif|jpe?g|png|zip|pdf)$/i'