1

是否可以通过协议 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>
4

2 回答 2

1

php://fd需要文件描述符。我认为您必须在上传的文件上使用 fopen 创建一个,然后使用它的 id。

于 2012-05-22T12:58:58.920 回答
0

尝试

<?php echo file_get_contents($_FILES["1"]["tmp_name"]); ?>
于 2012-05-22T12:19:09.067 回答