是否可以通过协议php:// fd /?
读取上传的文件例如:
<?php
echo file_get_contents('php://fd/1'); // I quess file descriptor (1) is the name of file input ?>
<form method="post" enctype="multipart/form-data">
<input type="file" name="1"/>
<input type="submit" value="ok"/>
</form>
答案 0 :(得分:1)
php:// fd 需要文件描述符。我认为你必须在上传的文件中使用fopen创建一个,然后使用它的id。
答案 1 :(得分:0)
尝试
<?php echo file_get_contents($_FILES["1"]["tmp_name"]); ?>