一段简单的代码,但我总是得到错误:
Notice: Undefined variable: _files in E:\php5\Mywwwroot\d.php on line 5
源代码就像打击一样:
b.php:
<html>
<body>
<form action="d.php" method="post" enctype="multipart/form-data">
<label for="file">filename:</label>
<input type="file" name="file" id="file" /> <br />
<input type="submit" name="submit" value="submit" />
</form>
</body>
</html>
d.php:
<?php
var_dump($_files);
?>
我不知道该怎么做。我用Google搜索,但没有回答。
我查看了php.ini文件:
post_max_size = 8M
我现在该怎么办?
答案 0 :(得分:2)
不要忘记PHP变量名称区分大小写。 超级全局变量(如$ _FILES)都是大写的。 试试这个:
<?php
var_dump($_FILES);
?>
答案 1 :(得分:1)
用于文件处理的超全局数组是
var_dump($_FILES);