简体   繁体   English

我需要文件上传 function。但是当我运行这段代码时会显示这种类型的错误

[英]i need file upload function. but when i run this code then show this type error

<?php
$target_dir = "uploads/";
$target_file = $target_dir . basename($_FILES["fileToUpload"]["name"]);

$uploadOk = 1;
$imageFileType = strtolower(pathinfo($target_file,PATHINFO_EXTENSION));


// Check if image file is a actual image or fake image
if(isset($_POST["submit"])) {
  $check = getimagesize($_FILES["fileToUpload"]["tmp_name"]);
  
  if($check !== false) {
    echo "File is an image - " . $check["mime"] . ".";
    $uploadOk = 1;
  } else {
    echo "File is not an image.";
    $uploadOk = 0;
  }
}

// Check if file already exists
if (file_exists($target_file)) {
  echo "Sorry, file already exists.";
  $uploadOk = 0;
}

// Check file size
/*if ($_FILES["fileToUpload"]["size"] > 500000) {
  echo "Sorry, your file is too large.";
  $uploadOk = 0;
}*/

// Allow certain file formats
if($imageFileType != "jpg" && $imageFileType != "png" && $imageFileType != "jpeg"
&& $imageFileType != "gif" ) {
  echo "Sorry, only JPG, JPEG, PNG & GIF files are allowed.";
  $uploadOk = 0;
}

// Check if $uploadOk is set to 0 by an error
if ($uploadOk == 0) {
  echo "Sorry, your file was not uploaded.";
// if everything is ok, try to upload file
} else {
  if (move_uploaded_file($_FILES["fileToUpload"]["tmp_name"], $target_file)) {
    echo "The file ". htmlspecialchars( basename( $_FILES["fileToUpload"]["name"])). " has been uploaded.";
  } else {
    echo "Sorry, there was an error uploading your file.";
  }
}
?>

File is an image - image/jpeg.文件是图像 - image/jpeg。 Warning: move_uploaded_file(uploads/IMG-20191002-WA0009.jpg): Failed to open stream: No such file or directory in C:\xampp\htdocs\resume\uploads\upload.php on line 46警告:move_uploaded_file(uploads/IMG-20191002-WA0009.jpg): 无法打开 stream: No such file or directory in C:\xampp\htdocs\resume\uploads\upload.php on line 46

Warning: move_uploaded_file(): Unable to move "C:\xampp\tmp\php8F79.tmp" to "uploads/IMG-20191002-WA0009.jpg" in C:\xampp\htdocs\resume\uploads\upload.php on line 46 Sorry, there was an error uploading your file. Warning: move_uploaded_file(): Unable to move "C:\xampp\tmp\php8F79.tmp" to "uploads/IMG-20191002-WA0009.jpg" in C:\xampp\htdocs\resume\uploads\upload.php 在线46 抱歉,上传您的文件时出错。

Try an absolute path, by replacing:尝试绝对路径,通过替换:

$target_dir = "uploads/";

With something like:有这样的东西:

$target_dir = __DIR__ . '/uploads/';

The brackets are not set correctly and the form tag is missing.括号设置不正确,缺少表单标签。 All should be declared after the post event by clicking the submit button:应在发布事件后通过单击提交按钮声明所有内容:

$imageFileType = "";
$target_file = "";

if(isset($_POST["submit"])) {
$target_dir = "uploads/";
$target_file = $target_dir . basename($_FILES["fileToUpload"]["name"]);
$uploadOk = 1;
$imageFileType = strtolower(pathinfo($target_file,PATHINFO_EXTENSION));
$check = getimagesize($_FILES["fileToUpload"]["tmp_name"]);

if($check !== false) {
  echo "File is an image - " . $check["mime"] . ".<br>";
  $uploadOk = 1;
} else {
  echo "File is not an image.";
  $uploadOk = 0;
}


// Check if file already exists
if (file_exists($target_file)) {
  echo "Sorry, file already exists.";
  $uploadOk = 0;
}

// Check file size
/*if ($_FILES["fileToUpload"]["size"] > 500000) {
  echo "Sorry, your file is too large.";
  $uploadOk = 0;
}*/

// Allow certain file formats
if($imageFileType != "jpg" && $imageFileType != "png" && $imageFileType != "jpeg" && $imageFileType != "gif" ) {
  echo "Sorry, only JPG, JPEG, PNG & GIF files are allowed.";
  $uploadOk = 0;
}

// Check if $uploadOk is set to 0 by an error
if ($uploadOk == 0) {
  echo "Sorry, your file was not uploaded.";
// if everything is ok, try to upload file
} else {
if (move_uploaded_file($_FILES["fileToUpload"]["tmp_name"], $target_file)) {
  echo "The file ". htmlspecialchars( basename( $_FILES["fileToUpload"]["name"])). " has been uploaded.";
} else {
  echo "Sorry, there was an error uploading your file.";
}
}
}
print "<FORM  action='{$_SERVER['PHP_SELF']}'  method='POST' enctype='multipart/form-data'>";
?>
<input type="file"  name="fileToUpload"/>
<?php
print "<button type='submit' name='submit' style='width:100px;'>upload</button>";
print "</form>";

not sure if this will help at all but what i use不确定这是否有帮助,但我用的是什么

<!DOCTYPE html>

<html lang="en">

<head>
<!-- Main Meta Tag Propertys -->
<meta http-equiv="refresh" content="60">
</head>

<body>
<?php
error_reporting(0);
$get_url = $_POST["url"];
$url = trim("http://charts.canterbury.quakelive.co.nz/images/summary.png");
if($url)
{
$file = fopen($url,"rb");
$directory = "upload/";
$valid_exts = array("php","jpeg","gif","png","doc","docx","jpg","html","asp","xml","JPEG","bmp"); 
$ext = end(explode(".",strtolower(basename($url))));
if(in_array($ext,$valid_exts))
{
    $rand = rand(1000,9999);
    $filename = "summary.png";
    $newfile = fopen($directory . $filename, "wb");
    if($newfile)
    {
        while(!feof($file))
        {
            fwrite($newfile,fread($file,1024 * 8),1024 * 8);
        }
        echo 'Christchurch Quake Live - ';
        echo 'updated success - File: '.$filename;
    }
    else
    {
        echo 'File does not exists';
    }
}
else
{
    echo 'Invalid URL';
}
}
else
{
echo 'Please enter the URL';
}
?>

</body>

</html>

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 当我将文件上传到phpmyadmin时显示4行错误 - when i upload file to phpmyadmin show error in 4 lines 当我运行 function 生成统计信息时,Laravel 显示错误 42000 - Laravel show Error 42000 when I run function to generate statistics 如何在我的 php 代码上添加路径目录,因为当我运行代码并上传文件时,我在第 29 行出现错误 - How would I add a path directory on my php code as when i run my code and upload a file i get an error on line 29 我可以从javascript函数获取网址。 我需要使用php代码将相同的URL存储在我的数据库中。 - I am able to get the url from javascript function. I need same url to be stored in my database using php code. 当文件上传超过最大上传限制时如何显示错误? - Laravel - How can I show error when file upload exceeds max upload limit? - Laravel 添加功能时上传文件不起作用 - Upload file not working when I add a function 嗨,我有一个搜索代码,但是当我运行它时它显示错误 - hi i have a search code but when i run it it show me error 无法使用fopen()打开远程XML文件。 我需要在服务器中设置的所有权限或者我需要在fopen()函数中设置的参数。 - Unable to open remote XML file using fopen(). What all permission i need to set in server or what parameters i need to set in fopen() function.? 当我运行下面的代码时出现错误 - When I run the code below error comes 由于超时错误,我需要在后台运行此PHP函数 - i need this PHP function run on background due to timeout error
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM