doujiao4705 2013-11-14 17:24
浏览 34
已采纳

PHP上传将文件名更改为“图像”

I am trying to get the following function to retain the original file name on upload.

Right now it uploads the image and stores it in the correct folder; however, it changes the name of the file to image.png.

PHP:

class Upload {

    function upimg($file, $up = "./upload/") {
        $whitelist = array("jpg", "jpeg", "png", "gif");
        if (isset($_FILES[$file]) && $_FILES[$file]['error'] == 0) {
            $info = pathinfo($_FILES[$file]['name']);
            $extension = $info['extension'];
            list($width, $height, $type, $attr) = getimagesize($_FILES[$file]['tmp_name']);
            if (($width > 10 || $height > 10) & in_array($extension, $whitelist)) {
                $url = $file . '.' . $extension;
                move_uploaded_file($_FILES[$file]['tmp_name'], $up . $url);
                return $url;
            }
        }
    }

}

I imagine this is happening because $file isn't actually holding the original file name...not sure how to resolve this. Where did i go wrong??

  • 写回答

1条回答 默认 最新

  • doumao1887 2013-11-14 17:28
    关注

    You should change how you're defining $url from $url = $file . '.' . $extension; to $url = $FILES[$file]['name'];

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 关于#hadoop#的问题
  • ¥15 (标签-Python|关键词-socket)
  • ¥15 keil里为什么main.c定义的函数在it.c调用不了
  • ¥50 切换TabTip键盘的输入法
  • ¥15 可否在不同线程中调用封装数据库操作的类
  • ¥15 微带串馈天线阵列每个阵元宽度计算
  • ¥15 keil的map文件中Image component sizes各项意思
  • ¥20 求个正点原子stm32f407开发版的贪吃蛇游戏
  • ¥15 划分vlan后,链路不通了?
  • ¥20 求各位懂行的人,注册表能不能看到usb使用得具体信息,干了什么,传输了什么数据