我試圖直接從php://input
流中解壓zip文件。我跑Laravel家園,PHP 7.1.3-3+deb.sury.org~xenial+1
,與myproject.app/upload
端點,這裏是curl
命令:解壓縮或膨脹php://輸入流?
curl --request POST \
--url 'http://myproject.app/upload' \
--data-binary "@myfile.zip" \
這是所有我試過的方法列表,其中所有的失敗:
dd(file_get_contents('compress.zlib://php://input'));
file_get_contents()函數:不能代表類型輸入的流作爲文件描述
$fh = fopen('php://input', 'rb');
stream_filter_append($fh, 'zlib.inflate', STREAM_FILTER_READ, array('window'=>15));
$data = '';
while (!feof($fh)) {
$data .= fread($fh, 8192);
}
dd($data);
「」
$zip = new ZipArchive;
$zip->open('php://input');
$zip->extractTo(storage_path() . '/' . 'myfile');
$zip->close();
ZipArchive :: extractTo():無效的或者未初始化的對象郵編
這裏是所有我對找到的鏈接subject:
http://php.net/manual/en/wrappers.php#83220
http://php.net/manual/en/wrappers.php#109657
http://php.net/manual/en/wrappers.compression.php#118461
https://secure.phabricator.com/rP42566379dc3c4fd01a73067215da4a7ca18f9c17
https://arjunphp.com/how-to-unpack-a-zip-file-using-php/
我開始認爲這是不可能與PHP的內置的ZIP功能流進行操作。編寫臨時文件的開銷和複雜性會非常令人失望。有誰知道如何做到這一點,或者它是一個錯誤?