我检查文件扩展名是否上传或未上传。我的方法工作但现在我需要了解,我的方法(pathinfo)是真的吗?另一种更好更快的方式?!感谢
$filename = $_FILES['video_file']['name'];
$ext = pathinfo($filename, PATHINFO_EXTENSION);
if( $ext !== 'gif' || $ext !== 'png' || $ext !== 'jpg' ) {echo 'error';}
答案 0 :(得分:121)
使用if( $ext !== 'gif'
)可能效率不高,如果你允许20个不同的扩展名
尝试
$allowed = array('gif','png' ,'jpg');
$filename = $_FILES['video_file']['name'];
$ext = pathinfo($filename, PATHINFO_EXTENSION);
if(!in_array($ext,$allowed) ) {
echo 'error';
}
答案 1 :(得分:46)
检查文件扩展名不是最佳做法,完成此任务的首选方法是检查文件mime type。
来自PHP:
<?php
$finfo = finfo_open(FILEINFO_MIME_TYPE); // return mime type
foreach (glob("*") as $filename) {
echo finfo_file($finfo, $filename) . "\n";
}
finfo_close($finfo);
?>
上面的示例将输出您应该检查的类似内容。
text/html
image/gif
application/vnd.ms-excel
虽然也可以欺骗mime-types(编辑文件的前几个字节并修改幻数),但它比编辑文件名更难。因此,您永远无法100%确定该文件类型实际上是什么,并且应该小心处理用户上传/通过电子邮件发送的文件。
答案 2 :(得分:11)
就个人而言,我更喜欢使用preg_match()函数:
if(preg_match("/\.(gif|png|jpg)$/", $filename))
$exts = array('gif', 'png', 'jpg');
if(in_array(end(explode('.', $filename)), $exts)
如果您有大量的扩展验证和性能问题,那么使用in_array()
会非常有用。
验证文件图像的另一种方法:您可以使用@imagecreatefrom*()
,如果函数失败,则表示图像无效。
例如:
function testimage($path)
{
if(!preg_match("/\.(png|jpg|gif)$/",$path,$ext)) return 0;
$ret = null;
switch($ext)
{
case 'png': $ret = @imagecreatefrompng($path); break;
case 'jpeg': $ret = @imagecreatefromjpeg($path); break;
// ...
default: $ret = 0;
}
return $ret;
}
然后:
$valid = testimage('foo.png');
假设foo.png
是扩展名为.png
的PHP脚本文件,则上述功能失败。它可以避免shell更新和LFI等攻击。
答案 3 :(得分:5)
pathinfo非常酷,但您的代码可以改进:
$filename = $_FILES['video_file']['name'];
$ext = pathinfo($filename, PATHINFO_EXTENSION);
$allowed = array('jpg','png','gif');
if( ! in_array( $ext, $allowed ) ) {echo 'error';}
当然,只检查文件名的扩展名并不能保证文件类型为有效图像。您可以考虑使用getimagesize
之类的函数来验证上传的图像文件。
答案 4 :(得分:2)
不确定这是否会有更快的计算时间,但另一种选择......
$acceptedFormats = array('gif', 'png', 'jpg');
if(!in_array(pathinfo($filename, PATHINFO_EXTENSION), $acceptedFormats))) {
echo 'error';
}
答案 5 :(得分:2)
文件类型也可以通过其他方式检查。我相信这是检查上传文件类型的最简单方法..如果您正在处理图像文件,那么请转到以下代码。如果你正在处理视频文件,那么用if块中的视频检查替换图像检查..玩得开心
$img_up = $_FILES['video_file']['type']; $img_up_type = explode("/", $img_up); $img_up_type_firstpart = $img_up_type[0];if($img_up_type_firstpart == "image") { // image is the image file type, you can deal with video if you need to check video file type
/* do your logical code */ }
答案 6 :(得分:1)
我认为这可能适合你
//<?php
//checks file extension for images only
$allowed = array('gif','png' ,'jpg');
$file = $_FILES['file']['name'];
$ext = pathinfo($file, PATHINFO_EXTENSION);
if(!in_array($ext,$allowed) )
{
//?>
<script>
alert('file extension not allowed');
window.location.href='some_link.php?file_type_not_allowed_error';
</script>
//<?php
exit(0);
}
//?>
答案 7 :(得分:0)
要正确实现这一点,最好通过检查mime类型来实现。
function get_mime($file) {
if (function_exists("finfo_file")) {
$finfo = finfo_open(FILEINFO_MIME_TYPE); // return mime type ala mimetype extension
$mime = finfo_file($finfo, $file);
finfo_close($finfo);
return $mime;
} else if (function_exists("mime_content_type")) {
return mime_content_type($file);
} else if (!stristr(ini_get("disable_functions"), "shell_exec")) {
// http://stackoverflow.com/a/134930/1593459
$file = escapeshellarg($file);
$mime = shell_exec("file -bi " . $file);
return $mime;
} else {
return false;
}
}
//pass the file name as
echo(get_mime($_FILES['file_name']['tmp_name']));
答案 8 :(得分:0)
如何在上传之前验证表单上的文件扩展名(仅限jpg / jpeg)。另一个在此处发布的答案的变体与包含的数据过滤器在评估其他发布的表单值时可能很有用。注意:如果为空,则错误保留为空,因为这是我的用户的选项,而不是要求。
<?php
if(isset($_POST['save'])) {
//Validate image
if (empty($_POST["image"])) {
$imageError = "";
} else {
$image = test_input($_POST["image"]);
$allowed = array('jpeg','jpg');
$ext = pathinfo($image, PATHINFO_EXTENSION);
if(!in_array($ext,$allowed) ) {
$imageError = "jpeg only";
}
}
}
// Validate data
function test_input($data) {
$data = trim($data);
$data = stripslashes($data);
$data = htmlspecialchars($data);
return $data;
}
<?
你的html看起来像这样;
<html>
<head>
</head>
<body>
<!-- Validate -->
<?php include_once ('validate.php'); ?>
<!-- Form -->
<form method="post" action="">
<!-- Image -->
<p>Image <?php echo $imageError; ?></p>
<input type="file" name="image" value="<?php echo $image; ?>" />
<p><input type="submit" name="save" value="SAVE" /></p>
</form>
</body>
</html>
答案 9 :(得分:-2)
使用此功能
function check_image_extension($image){
$images_extentions = array("jpg","JPG","jpeg","JPEG","png","PNG");
$image_parts = explode(".",$image);
$image_end_part = end($image_parts);
if(in_array($image_end_part,$images_extentions ) == true){
return time() . "." . $image_end_part;
}else{
return false;
}
}