php 添加上传zip / rar mime类型

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 添加上传zip / rar mime类型相关的知识,希望对你有一定的参考价值。

function filter_upload_mimes( $existing_mimes = array() ){
	$existing_mimes[ 'zip' ]	= 'application/zip';
	$existing_mimes[ 'gz' ]		= 'application/x-gzip';
	$existing_mimes[ 'rar' ]	= 'application/x-rar-compressed';
	return $existing_mimes;
}
add_filter( 'upload_mimes', 'filter_upload_mimes' );

以上是关于php 添加上传zip / rar mime类型的主要内容,如果未能解决你的问题,请参考以下文章

文件上传漏洞

.zip 的 XAMPP PHP MIME 类型错误

PHP - 使用正确的 MIME 类型打开上传的 DOCX 文件

在 PHP 中检查“魔术字节”或 Mime 类型?

PHP上传表单问题

java上传图片到数据库,涉及压缩文件zip/rar上传等