为什么将文件上传到 PHP 时 ,$_FILES 为空?
我在我的Windows 7计算机上安装了WampServer 2。我使用的是Apache 2.2.11和PHP 5.2.11。当我尝试从表单上传任何文件时,它似乎上传,但在PHP中,数组是空的。文件夹中没有文件。我已配置为允许文件上传等。该文件夹对当前用户具有读/写权限。我很困惑。$_FILES
c:\wamp\tmp
php.ini
tmp
网页:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body>
<form enctype="multipart/form-data" action="vanilla-upload.php" method="POST">
Choose a file to upload: <input name="uploadedfile" type="file" /><br />
<input type="submit" value="Upload File" />
</form>
</body>
</html>
菲律宾比索:
<?php
echo 'file count=', count($_FILES),"\n";
var_dump($_FILES);
echo "\n";
?>