1

我正在使用 uploadify 上传图片。除了宽度:670px 高度:200px 的图像之外,还有什么方法可以限制用户上传。这是我的 uploadify.php 代码

<?php
require_once("includes/connection.php");

$targetFolder = '/workbench/sudeepc/photogallery/uploads' ; 

if (!empty($_FILES)) {
    $tempFile = $_FILES['Filedata']['tmp_name'];
    $targetPath = $_SERVER['DOCUMENT_ROOT'] . $targetFolder;
    $targetFile = rtrim($targetPath,'/') . '/' . $_FILES['Filedata']['name'];

    // Validate the file type
    $fileTypes = array('jpg','jpeg','gif','png'); // File extensions
    $fileParts = pathinfo($_FILES['Filedata']['name']);

    if (in_array($fileParts['extension'],$fileTypes)) {
        move_uploaded_file($tempFile,$targetFile);

 $query="INSERT INTO `photo` ( `id` , `path` , `uname` )
 VALUES (
 '','${targetFile}', 'testnn');";
 mysql_query($query,$connection);


    } else {
        echo 'Invalid file type.';
    }
}
?>

提前致谢 。

4

1 回答 1

1

您无法限制实际上传 - 必须上传文件才能让服务器端逻辑测试其有效性 - 文件扩展名、尺寸等...

有一个内置的 PHP 函数来确定图像大小 - http://php.net/manual/en/function.getimagesize.php

getimagesize()

getimagesize() 函数将确定任何给定图像文件的大小,并返回尺寸以及文件类型和要在普通 HTML IMG 标记和相应 HTTP 内容类型中使用的高度/宽度文本字符串。
...
返回一个包含 7 个元素的数组。
索引 0 和 1 分别包含图像的宽度和高度。

检查文件扩展名后,您可以在图像上调用此函数并根据您的要求测试其尺寸。

这是该函数的示例输出 -

Array ( 
  [0] => 84 // width
  [1] => 52 // height
  ... 
)
于 2012-06-05T15:43:01.363 回答