zip_entry_filesize
(PHP 4 >= 4.1.0, PHP 5 >= 5.2.0, PHP 7, PHP 8, PECL zip >= 1.0.0)
zip_entry_filesize — ディレクトリエントリの実際のファイルサイズを取得する
警告
この関数は PHP 8.0.0 で 非推奨になります。この関数に頼らないことを強く推奨します。
戻り値
ディレクトリエントリのサイズを返します。
失敗した場合に false
を返します
+add a note
User Contributed Notes 1 note
Reflex ¶
14 years ago
Simple function that return total size of files in archive.
May be useful for check for zip bombs.
<?php
function get_zip_originalsize($filename) {
$size = 0;
$resource = zip_open($filename);
while ($dir_resource = zip_read($resource)) {
$size += zip_entry_filesize($dir_resource);
}
zip_close($resource);
return $size;
}
$size = get_zip_originalsize('file.zip');
echo "original size: $size bytes\n";
?>
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google