如何使用html和php上传图像?

时间:2019-06-11 02:06:00

标签: php html image

我正在尝试使用html和php上传图像,但是当我尝试上传图像时,它总是给我一个错误。

我已经在php.ini文件中看到了是否启用了上载选项,而且de max-size也为1000M

HTML代码

<!DOCTYPE html>
<html lang="en">
<head>
  <title>Test</title>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
  <form action="php/uploadLocal.php" method="post" enctype="multipart/form-data">
    Select image to upload:
    <input type="file" name="fileToUpload" id="fileToUpload">
    <input type="submit" value="Upload Image" name="submit">
  </form>
</body>
</html>

PHP代码

<?php 
$target_dir = "images/";
$target_file = $target_dir . basename($_FILES["fileToUpload"]["name"]);
if(isset($_POST["submit"])) {
  if (move_uploaded_file($_FILES["fileToUpload"]["tmp_name"], $target_file)) {
      echo "The file ". basename( $_FILES["fileToUpload"]["name"]). " has been uploaded.";
  } else {
      echo "Sorry, there was an error uploading your file.";
  }
}
?>

1 个答案:

答案 0 :(得分:0)

重新启动PC即可正常工作,简直令人沮丧