dpql57753 2019-04-18 13: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 13: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!

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

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部