我正在尝试将文件以及一些文本字段从HTML表单存储到我的Web服务器。文字写得非常好,但图像没有任何影响。我检查过错误,没有出现错误。电子邮件中也会收到图像。
我相信权限也很好 - 它们在/img/gallery/
和/img/gallery/data/
上完全相同。
以下是表单的PHP:
<?php
include 'loadImages.php';
require_once('class.phpmailer.php');
$name = $_POST['name'];
$email = $_POST['email'];
$location = $_POST['location'];
$desc = $_POST['desc'];
/**
* PHPMailer simple file upload and send example
*/
$msg = '';
if (array_key_exists('userfile', $_FILES)) {
// First handle the upload
// Don't trust provided filename - same goes for MIME types
// See http://php.net/manual/en/features.file-upload.php#114004 for more thorough upload validation
$uploadfile = tempnam(sys_get_temp_dir(), sha1($_FILES['userfile']['name']));
if (move_uploaded_file($_FILES['userfile']['tmp_name'], $uploadfile)) {
// Upload handled successfully
// Now create a message
// This should be somewhere in your include_path
require 'PHPMailerAutoload.php';
$mail = new PHPMailer;
$mail->setFrom('gallery@####.co.uk', 'Website');
$mail->addAddress('gallery@####.co.uk');
$mail->Subject = 'Image Submission Recieved';
$mail->msgHTML("<b>Name</b>: $name<br><b>Email</b>: $email<br><b>Location</b>: $location<br><b>Description</b>: $desc");
// Attach the uploaded file
$mail->addAttachment($uploadfile, 'Image');
if (!$mail->send()) {
$msg = "Mailer Error: " . $mail->ErrorInfo;
} else {
$msg = "Your message has been sent.";
}
} else {
$msg = 'Failed to move file to ' . $uploadfile;
}
$date = date('Y-m-d_H-i-s');
$path = $_SERVER['DOCUMENT_ROOT'].'/img/gallery/data/';
$filename = $date.".txt";
$file = fopen($path.$filename, "w") or die("Something went wrong storing your photo information");
fwrite($file, $name . "\n");
fwrite($file, $location . "\n");
fwrite($file, $desc . "\n");
fwrite($file, $email . "\n");
fwrite($file, "Valid: False");
fclose($file);
$name = $_FILES['userfile']['name'];
$path = $_SERVER['DOCUMENT_ROOT'].'/img/gallery/';
$filename = $date . "." . pathinfo($name, PATHINFO_EXTENSION);
$target = $path . $filename;
echo $target;
echo move_uploaded_file( $_FILES['userfile']['tmp_name'], $target);
}
$images = loadImages();
$imageData = LoadImageData();
?>
$ _ FILES:
1Array ( [userfile] => Array ( [name] => hairy sun.jpg [type] => image/jpeg [tmp_name] => /tmp/phpWweCkX [error] => 0 [size] => 49526 ) )
如果您还需要查看其他内容,我会将其上传。
答案 0 :(得分:1)
改变这一点,
$date = date('Y-m-d_H-i-s');
$path = $_SERVER['DOCUMENT_ROOT'].'/img/gallery/data/';
$filename = $date.".txt";
$file = fopen($path.$filename, "w") or die("Something went wrong storing your photo information");
fwrite($file, $name . "\n");
fwrite($file, $location . "\n");
fwrite($file, $desc . "\n");
fwrite($file, $email . "\n");
fwrite($file, "Valid: False");
fclose($file);
$name = $_FILES['userfile']['name'];
$path = $_SERVER['DOCUMENT_ROOT'].'/img/gallery/';
$filename = $date . "." . pathinfo($name, PATHINFO_EXTENSION);
$target = $path . $filename;
echo $target;
echo move_uploaded_file( $_FILES['userfile']['tmp_name'], $target);
在此代码之上,
if (move_uploaded_file($_FILES['userfile']['tmp_name'], $uploadfile)) {
然后再试一次。
答案 1 :(得分:1)
你将它保存到/ tmp目录中,我认为当脚本退出时它会被清理干净。尝试保存到另一个目录。