When uploading files through a web application, it's essential to ensure that the move_uploaded_file() function operates flawlessly. However, users may encounter instances where it seems not to work as expected.
In this article, we'll delve into the problem of move_uploaded_file() not working and provide solutions to address it.
The user has implemented a PHP script that utilizes the move_uploaded_file() function to handle file uploads. However, despite replicating the code provided in tutorials, the function fails to function properly.
The HTML code for the form and upload script appears to be correct. It includes necessary attributes for the file input and submits the data to the upload_file.php script.
In upload_file.php, the script correctly extracts information about the uploaded file, including its name, temporary location, size, and error code. However, the move_uploaded_file() function is incorrectly used, leading to the failure.
To resolve the issue, two steps are crucial:
Check the Error Code:
The $_FILES'image' variable contains an error code indicating the reason for the failure. Common error codes include:
Upon addressing these issues, the corrected code looks like this:
<code class="php"> <?php $move = __DIR__.'/../../uploads/'; echo $_FILES["file"]['name']."<br>"; echo $_FILES["file"]['tmp_name']."<br>"; echo $_FILES["file"]['size']."<br>"; echo $_FILES['file']['error']."<br>"; move_uploaded_file($_FILES['file']['tmp_name'], $move); ?> </code>
In this updated code, the temporary file name (tmp_name) is used instead of the original file name (name), which ensures that the file is correctly moved to the desired location.
以上是如何解決 PHP 中無法執行的 Move_uploaded_file() 問題?的詳細內容。更多資訊請關注PHP中文網其他相關文章!