PHP File Upload, files disappearing from /tmp before move_uploaded_files

前端 未结 14 1988
独厮守ぢ
独厮守ぢ 2021-02-13 03:09

I have a very basic upload script, probably lifted straight off the php.net/move_upload_files function page.

move_uploaded_file() is failed because it canno

14条回答
  •  野的像风
    2021-02-13 03:25

    I was trying out http://www.w3schools.com/php/php_file_upload.asp And I stumbled across the same bug.

    In my case, adding a "./" before the $destination solved the problem.

    bool move_uploaded_file ( string $filename , string $destination )
    

提交回复
热议问题