dpql57753 2019-04-18 21:40
浏览 97
已采纳

如何捕获文件名错误的错误? [重复]

This question already has an answer here:

I am working on an instagram clone for school and I am currently working on the "update profile" feature,whenever I try to update the profile picture it works like a charm, but whenever I dont update the profile picture but I just update the description or username I get the following error.

"getimagesize(): Filename cannot be empty"

What is the best way to catch this error when I am not uploading a new profile picture?

I have tried a "try catch" method but it doesn't seem to work. (could be possible I implemented it the wrong way

    if(isset($_FILES["file"])){
        if(getimagesize($_FILES["file"]["tmp_name"]) !== false){
            $target_dir = "uploads/";
            $extention = explode(".", $_FILES["file"]["name"]);

            $i = count($extention) - 1;
            $target_file = $target_dir . basename($_FILES["file"]["tmp_name"] . "." . $extention[$i]);

            if (move_uploaded_file($_FILES["file"]["tmp_name"], $target_file)) {
                // File has been moved to Uploads/[temp_name].[extention]
                $user->setImage($target_file);
                $a["image"] = $target_file;
            } else {
                // The file did not move to the destonation folder
            }
        }
    }

I expect this to not return the error to me when I am not uploading a new picture but just tring to update my username or description.

</div>
  • 写回答

1条回答 默认 最新

  • doufen3091 2019-04-18 21:45
    关注

    You can check if error index is zero (UPLOAD_ERR_OK), if error is not zero cause no file was uploaded, UPLOAD_ERR_NO_FILE will be there

    If you just want to check if upload went good you can write:

    if ($_FILES['file']['error'] == UPLOAD_ERR_OK) {
        // file is good (and not an error)
    }
    

    If you want to check file wasn't uploaded

    if ($_FILES['file']['error'] == UPLOAD_ERR_NO_FILE) {
        // file is empty, no upload
    }
    

    Check PHP Reference for more!

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

报告相同问题?

悬赏问题

  • ¥15 sqlite 附加(attach database)加密数据库时,返回26是什么原因呢?
  • ¥88 找成都本地经验丰富懂小程序开发的技术大咖
  • ¥15 如何处理复杂数据表格的除法运算
  • ¥15 如何用stc8h1k08的片子做485数据透传的功能?(关键词-串口)
  • ¥15 有兄弟姐妹会用word插图功能制作类似citespace的图片吗?
  • ¥200 uniapp长期运行卡死问题解决
  • ¥15 latex怎么处理论文引理引用参考文献
  • ¥15 请教:如何用postman调用本地虚拟机区块链接上的合约?
  • ¥15 为什么使用javacv转封装rtsp为rtmp时出现如下问题:[h264 @ 000000004faf7500]no frame?
  • ¥15 乘性高斯噪声在深度学习网络中的应用