这是我的HTML页面,包括表单:
<html>
<head>
<meta charset="UTF-8"/>
</head>
<body style="text-align:center;" >
<form id="upload" action="file_upload.php" method="post" enctype="multipart/form-data">
<input type="hidden" name="MAX_FILE_SIZE" value="12412412" />
<label for="file">Dosya Adı:</label>
<input type="file" mame="file" id="file"/>
<br/>
<input type="submit" name="submit" value="Yükle"/>
</form>
</body>
</html>
这是我的文件上传.php文件:
<pre>
<?php print_r($_FILES); ?>
</pre>
<?php
if( $_FILES["file"]["error"] > 0 ){
echo 'Error : ' . $_FILES["file"]["error"]. '<br/>';
}
else {
echo "File : " . $_FILES["file"]["name"] . "<br/>";
echo 'File Type : ' . $_FILES["file"]["type"] . '<br/>';
echo 'File temp adr: : ' . $_FILES["file"]["tmp_name"] . '<br/>';
}
?>
我的php信息记录:
file uploads : on
max file uploads : 20
upload max file size : 32M
post max size : 32M
我的tmp文件夹权限设置为777。我在Bitnami MAMP Stack 5.4.9上开发Mac OS 10.9
file_upload.php提供了以下信息:
Array
(
)
File :
File Type :
File temp adr: :
我尝试在html表单中使用或不使用
<input type="hidden" name="MAX_FILE_SIZE" value="12412412" />
。我在网上搜索evry网站,但找不到问题所在。 最佳答案
你有错误的属性:
<input type="file" mame="file" id="file"/>
应该是
name
:<input type="file" name="file" id="file"/>
这就是为什么
$_FILES
是空的;在将属性mame
固定到name
之后,它会起作用。