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