array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'de', ), 'this' => array ( 0 => 'pharfileinfo.iscompressed.php', 1 => 'PharFileInfo::isCompressed', 2 => 'Returns whether the entry is compressed', ), 'up' => array ( 0 => 'class.pharfileinfo.php', 1 => 'PharFileInfo', ), 'prev' => array ( 0 => 'pharfileinfo.iscrcchecked.php', 1 => 'PharFileInfo::isCRCChecked', ), 'next' => array ( 0 => 'pharfileinfo.setmetadata.php', 1 => 'PharFileInfo::setMetadata', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/phar/PharFileInfo/isCompressed.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>

PharFileInfo::isCompressed

(PHP 5 >= 5.3.0, PHP 7, PHP 8, PECL phar >= 1.0.0)

PharFileInfo::isCompressedReturns whether the entry is compressed

Beschreibung

public PharFileInfo::isCompressed(?int $compression = null): bool

This returns whether a file is compressed within a Phar archive with either Gzip or Bzip2 compression.

Parameter-Liste

compression

One of Phar::GZ or Phar::BZ2, defaults to any compression.

Rückgabewerte

true if the file is compressed within the Phar archive, false if not.

Changelog

Version Beschreibung
8.0.0 compression is now nullable.

Beispiele

Beispiel #1 A PharFileInfo::isCompressed() example

<?php
try {
$p = new Phar('/path/to/my.phar', 0, 'my.phar');
$p['myfile.txt'] = 'hi';
$p['myfile2.txt'] = 'hi';
$p['myfile2.txt']->setCompressedGZ();
$file = $p['myfile.txt'];
$file2 = $p['myfile2.txt'];
var_dump($file->isCompressed());
var_dump($file2->isCompressed());
} catch (
Exception $e) {
echo
'Create/modify on phar my.phar failed: ', $e;
}
?>

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

bool(false)
bool(true)

Siehe auch