PHP8 ZipArchive::getFromName
(PHP 5 >= 5.2.0, PHP 7, PHP 8, PECL zip >= 1.1.0)
ZipArchive::getFromName — 使用其名称返回条目内容
说明
public ZipArchive::getFromName(string $name, int $len = 0, int $flags = 0): string|false
使用条目名称返回条目内容。
参数
name
条目的名称
len
要从条目中读取的长度。如果 ,则 读取整个条目。
0
flags
用于查找条目的标志。以下值可能 被 ORed。
ZipArchive::FL_UNCHANGED
ZipArchive::FL_COMPRESSED
ZipArchive::FL_NOCASE
返回值
返回 success 条目的内容 或者在失败时返回 false。
示例
示例 #1 获取文件内容
<?php
$zip = new ZipArchive;
if ($zip->open('test1.zip') === TRUE) {
echo $zip->getFromName('testfromfile.php');
$zip->close();
} else {
echo 'failed';
}
?>
示例 #2 从 zip 条目转换图像
<?php
$z = new ZipArchive();
if ($z->open(dirname(__FILE__) . '/test_im.zip')) {
$im_string = $z->getFromName("pear_item.gif");
$im = imagecreatefromstring($im_string);
imagepng($im, 'b.png');
}
?>
参见
- ZipArchive::getFromIndex() - 使用其索引返回条目内容