ZipArchive::getStream
(PHP 5 >= 5.2.0, PHP 7, PHP 8, PECL zip >= 1.1.0)
ZipArchive::getStream — 名前を使用して、エントリのファイルハンドラ (読み込み専用) を取得する
説明
名前を使用して、エントリのファイルハンドラを取得します。 現時点では読み込み操作のみに対応しています。
パラメータ
name
-
使用するエントリの名前。
戻り値
成功した場合にファイルポインタ (リソース)、
失敗した場合に false
を返します。
例
例1 エントリの内容を fread() で取得し、それを保存する
<?php
$contents = '';
$z = new ZipArchive();
if ($z->open('test.zip')) {
$fp = $z->getStream('test');
if(!$fp) exit("失敗\n");
while (!feof($fp)) {
$contents .= fread($fp, 2);
}
fclose($fp);
file_put_contents('t',$contents);
echo "終了\n";
}
?>
例2 先ほどの例と同じことを、fopen() および zip ストリームラッパーで行う
<?php
$contents = '';
$fp = fopen('zip://' . dirname(__FILE__) . '/test.zip#test', 'r');
if (!$fp) {
exit("オープンできません\n");
}
while (!feof($fp)) {
$contents .= fread($fp, 2);
}
echo "$contents\n";
fclose($fp);
echo "done.\n";
?>
例3 ストリームラッパーと画像の組み合わせ。xml 関数とでも使用可能
<?php
$im = imagecreatefromgif('zip://' . dirname(__FILE__) . '/test_im.zip#pear_item.gif');
imagepng($im, 'a.png');
?>
参考
- ZipArchive::getStreamIndex() - インデックスで指定されたエントリへの、ファイルハンドラを取得する(読み取り専用)
- ZipArchive::getStreamName() - 名前で指定されたエントリへの、ファイルハンドラを取得する(読み取り専用)
- 圧縮ストリーム
+add a note
User Contributed Notes 2 notes
Sbastien ¶
2 years ago
Here a way to handle specific files from a zip archive without full extract :
<?php
$zip_file = '/path/to/file.zip'; // I wan to get stream a CSV files
$zip = new ZipArchive();
$zip->open($zip_file);
for ($i = 0; $i < $zip->numFiles; $i++) { // Check file by file
$name = $zip->getNameIndex($i); // Retrieve entry name
$extension = pathinfo($name, PATHINFO_EXTENSION);
if ($extension === 'csv') { // I want to handle csv files
$stream = $zip->getStream($name); // No stream index access before PHP 8.2
// Starting PHP 8.2 $zip->getStreamIndex() or $zip->getStreamName()
// Do stuff with $stream
// ...
}
}
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google