标签: php
我正在制作一个接收txt文件的文件输入。如何访问刚刚使用PHP上传的文件内容?
答案 0 :(得分:2)
$contents = file_get_contents('/path/to/file');
答案 1 :(得分:2)
如果您想直接访问该文件:
$content = file_get_contents($_FILES["file_input_field_name"]["tmp_name"]);
如果您想存储该文件,您需要查看:
http://php.net/move_uploaded_file