Jump to content
  • 0

Проблема с is_uploaded_file()


0nline
 Share

Question

Собственно суть проблемы:

 

Загружаю массив из картинок посредством формы, отправляю через $_POST, получаю массив $_FILES, всё просто.

 

Необходимо проверять, был ли загружен файл в данном поле или нет.

$i = 0;echo is_uploaded_file($image['tmp_name'][$i]);//тут выводится единичка - TRUEwhile ($i <= $count){    if ($day[$i]<>0)    {        move_uploaded_file($image['tmp_name'][$i],'../cn/tours/img/'.$image['name'][$i]);        if (is_uploaded_file($image['tmp_name'][$i]))//а вот тут условие ложно и тело if не выполняется, даже когда файл был загружен и сохранён в конечную директорию функцией выше        {        $url = '../cn/tours/img/'.$image['name'][$i];         echo $url;//это, естественно, тоже не выводится.        }

Если проверить $url до входа в if - все прекрасно работает и выводится.

В чём проблема?

 

P.S. код формы ниже

<form action="add.php" method="post" enctype="multipart/form-data">      <input name='image[]'type='file'>      <input type='submit'></form>
Edited by 0nline
Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

Проблему решил своеобразным "костылем"

if ($image['tmp_name'][$i]<>'')

 

Если есть знающие люди - отпишите, по какой причине не работала проверка с is_uploaded_file(), всё равно не могу этого понять.

Link to comment
Share on other sites

  • 0

читаем внимательно маны: http://www.php.su/is_uploaded_file

 

Для правильной работы, функции is_uploaded_file() нужен аргумент вида $_FILES['userfile']['tmp_name'], - имя закачиваемого файла на клиентской машине $_FILES['userfile']['name'] не подходит.

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy