我有这个基本的上传代码:
<form action="upload.php" method="post" >
<input type="file" name="file" value="" />
<input type="submit" name="submit" value="Go" />
</form>
<?php
if(isset($_POST['submit'])){
echo '<h3>Post test: </h3>';
var_dump($_POST);
$csv = array();
if(isset($_FILES["file"])) {
//if there was an error uploading the file
if($_FILES["file"]["error"] > 0) {
echo "Return Code: " . $_FILES["file"]["error"] . "<br />";
}
else {
//Print file details
echo "Upload: " . $_FILES["file"]["name"] . "<br />";
echo "Type: " . $_FILES["file"]["type"] . "<br />";
echo "Size: " . ($_FILES["file"]["size"] / 1024) . " Kb<br />";
echo "Temp file: " . $_FILES["file"]["tmp_name"] . "<br />";
}
}
else {
echo "No file selected <br />";
}
}
我一直收到“没有选择文件”,这是isset($_FILES['file']
的其他后备。
我的php.ini文件中是否有东西要设置为允许我将文件上传到临时位置?除了提交表单以将文件设置为$_FILES
之外,我还需要做些什么吗?
答案 0 :(得分:3)
您错过了表单标记中的enctype="multipart/form-data"
属性:
<form action="upload.php" method="post" enctype="multipart/form-data">