PHP 文件上传文件类型和文件大小检查

Posted

tags:

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

<?php
	// Configuration - Your Options
	$allowed_filetypes = array('.jpg','.gif','.bmp','.png'); // These will be the types of file that will pass the validation.
	$max_filesize = 524288; // Maximum filesize in BYTES (currently 0.5MB).
	$upload_path = './files/'; // The place the files will be uploaded to (currently a 'files' directory).
	
	$filename = $_FILES['userfile']['name']; // Get the name of the file (including file extension).
	$ext = substr($filename, strpos($filename,'.'), strlen($filename)-1); // Get the extension from the filename.
	
	// Check if the filetype is allowed, if not DIE and inform the user.
	if(!in_array($ext,$allowed_filetypes))
	die('The file you attempted to upload is not allowed.');
	
	// Now check the filesize, if it is too large then DIE and inform the user.
	if(filesize($_FILES['userfile']['tmp_name']) > $max_filesize)
	die('The file you attempted to upload is too large.');
	
	// Check if we can upload to the specified path, if not DIE and inform the user.
	if(!is_writable($upload_path))
	die('You cannot upload to the specified directory, please CHMOD it to 777.');
	
	// Upload the file to your specified path.
	if(move_uploaded_file($_FILES['userfile']['tmp_name'],$upload_path . $filename))
	echo 'Your file upload was successful, view the file <a href="' . $upload_path . $filename . '" title="Your File">here</a>'; // It worked.
	else
	echo 'There was an error during the file upload.  Please try again.'; // It failed :(.
 
?>

以上是关于PHP 文件上传文件类型和文件大小检查的主要内容,如果未能解决你的问题,请参考以下文章

csharp 上传文件和检查大小和类型

在使用 PHP 上传到临时目录之前检查图像的文件大小

ajax上传文件,并检查文件类型检查文件大小

input file 上传文件类型大小检查

检查上传的文件是不是在 php 中属于不安全的文件类型

Codeigniter 图片上传忽略允许的类型和文件大小