Why does image upload fail php's is_uploaded_file check?

与世无争的帅哥 提交于 2019-12-18 08:41:29

问题


I have a html form that allows image uploads, but the image uploaded now fails the "is_uploaded_file" check for some reason.

So why does the upload fail the is_uploaded_file check?

HTML:

<form enctype="multipart/form-data" id="RecipeAddForm" method="post"
action="/recipes/add" accept-charset="utf-8">
    <!--- Omitted Markup -->
    <input type="file" name="data[Recipe][image]" value="" id="RecipeImage" />
    <!--- Omitted Markup -->
</form>

PHP:

// returns false
echo is_uploaded_file($file['tmp_name'])?'true':'false'; 

I did a dump on the $file or $_FILES array:

Array
(
    [name] => add or remove.jpg
    [type] => image/jpeg
    [tmp_name] => E:\\xampp\\tmp\\phpB9CB.tmp
    [error] => 0
    [size] => 71869
)

File size is not too large, and the error was 0. So why does it fail the is_uploaded_file check?


回答1:


Might be a problem with windows, since it's case sensitive and will not match if the path is different. Try using realpath($file['tmp_name'])




回答2:


try with

if (is_uploaded_file($_FILES['data[Recipe][image]']['tmp_name']))

remember $_FILES is reserve PHP superglobal variable ..so always write in capital

u can retrieve the correct path of file using

$filename = basename($_FILES['userfile']['name']);

NOTE: why u using array in the name attribute ( name="data[Recipe][image]" ) ?

if there is no specific reason then alwayz make simple code

<input type="file" name="RecipeImage" value="" id="RecipeImage" />

and check simply

 if (is_uploaded_file($_FILES['RecipeImage']['tmp_name']))

Remember KISS




回答3:


After you have used the uploaded image (move_uploaded_file) the function is_uploaded_file always returns false.



来源:https://stackoverflow.com/questions/5202306/why-does-image-upload-fail-phps-is-uploaded-file-check

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!