PHP仅上传jpg格式

时间:2013-02-21 11:10:33

标签: php

在MrCode的带领下,我能够发现为什么我的上传没有通过其他图片格式。下面是createThumbs函数,所以我如何使它适用于其他扩展。

<?php
function createThumbs( $pathToImages, $pathToThumbs, $thumbWidth ) 
{
 // open the directory
$dir = opendir( $pathToImages );

// loop through it, looking for any/all JPG files:
while (false !== ($fname = readdir( $dir ))) {
// parse path for the extension
$info = pathinfo($pathToImages . $fname);
// continue only if this is a JPEG image
if ( strtolower($info['extension']) == 'jpg' ) 
{
  // load image and get image size
  $img = imagecreatefromjpeg( "{$pathToImages}{$fname}" );
  $width = imagesx( $img );
  $height = imagesy( $img );

  // calculate thumbnail size
  $new_width = $thumbWidth;
  $new_height = floor( $height * ( $thumbWidth / $width ) );

  // create a new tempopary image
  $tmp_img = imagecreatetruecolor( $new_width, $new_height );

  // copy and resize old image into new image 
  imagecopyresized( $tmp_img, $img, 0, 0, 0, 0, $new_width, $new_height, $width,   $height );

  // save thumbnail into a file
  imagejpeg( $tmp_img, "{$pathToThumbs}{$fname}" );
}
}
// close the directory
closedir( $dir );
}

?>

1 个答案:

答案 0 :(得分:0)

我认为问题出在你的循环中

foreach($_FILES['files']['tmp_name'] as $key => $tmp_name ){

应该写成

foreach($_FILES['files'] as $key => $file){

因为第一次只会第一次投放,而在第一次file中可能会有jpeg张图片 所以它第一次运行。