PHP Post Upload但不从内容中读取任何内容

时间:2014-10-11 12:10:25

标签: php

我在upload.txt中的内容是

Hello    World

我尝试了以下

$new_file_name = strtolower($_FILES['up_file']['tmp_name']); //rename file
$file_content = file_get_contents($new_file_name);
echo $new_file_name . "<br/>";
echo "File content > " . $file_content;

当我运行页面时,输出是

/tmp/phpmvdogy

File content >

但内容是空的。究竟出了什么问题,我该怎么办才能读懂

0 个答案:

没有答案