我正在尝试将图片添加到我的表单中,但我似乎无法使其正常工作。我查看了我能找到的所有资源,但我还没有能够解决这个问题。我的文件夹是可写的,存在。 move_uploaded_file(tmpfileName,fileDestination)的语法也是正确的。 这是我的代码:
if($_FILES['thread_image']['name']!=""){
$fileExtBreak = explode('.', $_FILES['thread_image']['name']);
$fileExt = strtolower(end($fileExtBreak));
$allowed = array('jpg','jpeg','png','pdf');
if(in_array($fileExt, $allowed)){
$_SESSION['errors'] = $errors;
if($_FILES['thread_image']['error'] > 0){
$errors[] = 'Something went wrong when trying to upload your image.';
$_SESSION['errors'] = $errors;
header("Location:topic.php?id=". $_GET['id'] ."");
}else{
if($_FILES['thread_image']['size']>=10000000){
$errors[] = 'The file you are trying to upload is too big';
$_SESSION['errors'] = $errors;
header("Location:topic.php?id=". $_GET['id'] ."");
}else{
if(!is_dir('images')){
$errors[]='This shit doesn\'t exist';
}else if(!is_writable('images')){
$errors[]='This shit isn\'t writable';
}else{
$errors[]='It exists and should work!!!!';
}
$fileName = $date.'.'.$fileExt;
$filePath = 'images/'.$fileName;
$errors[]=$_FILES['thread_image']['tmp_name'];
$errors[]=$fileName;
$errors[]=$filePath;
if(move_uploaded_file($_FILES['thread_image']['tmp_name'], $filePath)){
$errors[]="success";
}else{
$errors[]="didn't work, sorry";
}
$errors[]=mysqli_error($link);
$_SESSION['errors'] = $errors;
$stmt = $link->prepare("UPDATE threads set thread_has_image='1' WHERE thread_date=?");
$stmt->bind_param("s",$date);
$result=$stmt->execute();
}
}
}else{
$errors[] = "You cannot upload files with that type";
$_SESSION['errors'] = $errors;
header("Location:topic.php?id=". $_GET['id'] ."");
}
}
以下是它吐出的内容:
1)检查文件夹是否存在,2)吐出临时文件名3)吐出我创建的文件名,4)吐出文件目的地我创建5)检查move_uploaded_file是否有效
这是我的表格:
<form class="makerContainer" method="post" enctype="multipart/form-data" action=<?php echo '"threadMaker_handler.php?id=' . $_GET[ 'id'] . '"'; ?>>
<fieldset class="good">
<div class="makerForm">
Thread Title:
<input type="text" class="title" title="ThreadTitle" name="thread_title" <?php echo 'value="' . $name . '"'; ?>>
</div>
<div class="makerForm">
Thread Description:
<textarea class="description" rows="8" cols="100" name="thread"><?php echo '' . $thread . ''; ?></textarea>
<div class="submitPanel">
<input type="file" name="thread_image"/>
<input type="submit" class="button buttonModal buttonColor" value="+ Create Thread">
</div>
</div>
</fieldset>
</form>
答案 0 :(得分:1)
OP看到这条评论:
@FunkFortyNiner你对冒号是正确的,我从$ date将我的文件名改为uniqid('',true),现在它可以了。
是我感觉到的,是正在使用的文件名中的冒号。
Windows不支持该命名约定。充其量,您需要将其替换为其他角色。但是,这会对我的mysql约会方法造成严重破坏,正如我在查询中注意到的那样。
有没有办法让我这样做,所以我的服务器接受日期命名约定?我正在使用Windows 10。
您可以使用其他字符作为文件名,但不要将$date
用于查询。如果您希望使用今天的日期,可以在其位置使用NOW()
。
您需要将列类型更改为DATETIME
,因为您似乎将其存储为VARCHAR,这不是一个好主意。
最好使用MySQL的内置日期/日期时间函数,如果这是使用的RDBMS,它将在以后更容易查询。
或者保留您现在用于查询的内容以及日期是否匹配,但是为$date
使用不同的变量以及文件的不同存储名称。