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'];

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

报告相同问题?

悬赏问题

  • ¥20 求个正点原子stm32f407开发版的贪吃蛇游戏
  • ¥15 正弦信号发生器串并联电路电阻无法保持同步怎么办
  • ¥15 划分vlan后,链路不通了?
  • ¥20 求各位懂行的人,注册表能不能看到usb使用得具体信息,干了什么,传输了什么数据
  • ¥15 个人网站被恶意大量访问,怎么办
  • ¥15 Vue3 大型图片数据拖动排序
  • ¥15 Centos / PETGEM
  • ¥15 划分vlan后不通了
  • ¥20 用雷电模拟器安装百达屋apk一直闪退
  • ¥15 算能科技20240506咨询(拒绝大模型回答)