PharFileInfo->isCompressedGZ

(no version information, might be only in CVS)

PharFileInfo->isCompressedGZ -- Returns whether the entry is compressed using gz

Beschreibung

bool PharFileInfo->isCompressedGZ ( void )

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

Rückgabewerte

TRUE if the file is compressed within the Phar archive using Gzip, FALSE if not.

Beispiele

Beispiel 1. A PharFileInfo->isCompressedGZ() example

<?php
$p
= new Phar('/path/to/my.phar', 0, 'my.phar');
$p['myfile.txt'] = 'hi';
$file = $p['myfile.txt'];
var_dump($file->isCompressedGZ());
?>

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

bool(false)

Siehe auch

PharFileInfo->getCompressedSize()
PharFileInfo->isCompressedBZIP2()
PharFileInfo->isCompressed()