PHP | zip_entry_compressedsize()函数
zip_entry_compressedsize()函数是PHP中的一个内置函数,用于返回 zip 归档条目中压缩文件的大小。它可用于检索目录条目的压缩大小。必须读取的 zip 条目资源作为参数发送到 zip_entry_compressedsize()函数,并在成功时返回压缩大小。
句法:
int zip_entry_compressedsize ( $zip_entry )
参数: zip_entry_compressedsize()函数接受单个参数$zip_entry 。它是一个强制参数,用于指定 zip 条目资源。
返回值:成功时返回压缩后的大小。
错误和异常:
- zip_entry_compressedsize() 仅在成功时返回文件或目录的压缩大小,否则返回PHP警告。
- 如果 zip 存档无效,则 zip_entry_compressedsize()函数会返回 ER_OPEN 错误。
- 如果 zip 存档为空,则 zip_entry_compressedsize()函数会返回 ER_NOZIP 错误。
下面的程序说明了PHP中的 zip_entry_compressedsize()函数:
方案一:
Suppose a zip file article.zip contains the following file:
content.xlsx
php
php
";
}
zip_close($zip_handle);
}
else
echo("Zip archive cannot be opened.");
?>
输出:
File Name: article/content.xlsx (6341 Bytes)
方案二:
Suppose a zip file article.zip contains the following file:
content.xlsx
gfg.pdf
image.jpeg
PHP
";
}
zip_close($zip_handle);
}
else
echo("Zip archive cannot be opened.");
?>
输出:
File Name: article/content.xlsx (6341 Bytes)
File Name: article/gfg.pdf (603195 Bytes)
File Name: article/image.jpeg (155736 Bytes)
相关文章:
- PHP | zip_entry_close()函数
- PHP | zip_close( )函数
参考: 函数 : PHP 。 PHP