-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
RandomAccessZipReaderImpl:
public function entryNamed($name) {
$this->index ?: $this->readCentralDirectory();
if ($header= $this->index[$name] ?? null) {
$this->streamPosition($header['offset']);
return $this->currentEntry();
} else {
return null;
}
}ZipArchiveReader:
public function entry($name) {
return $this->impl->entryNamed($name);
}Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels