我正在尝试用PHP处理上传的文本文件。
HTML
<p>Please upload file below:</p>
<form action="process.php" method="post">
<input type="file" name="file" accept="text/plain">
<input type="submit">
</form>
PHP
<?php
// print the file metadata
print_r($_FILES);
?>
当我提交表单时,我只是打印一个空数组:Array()
我在这里做错了什么?我希望能够逐行阅读文本文件。