PHP Doku:: Returns whether the entry is compressed using gz - pharfileinfo.iscompressedgz.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzErweiterungen zur Datenkompression und ArchivierungPharThe PharFileInfo classPharFileInfo::isCompressedGZ

Ein Service von Reinhard Neidl - Webprogrammierung.

The PharFileInfo class

<<PharFileInfo::isCompressedBZIP2

PharFileInfo::setCompressedBZIP2>>

PharFileInfo::isCompressedGZ

(PHP >= 5.3.0, PECL phar >= 1.0.0)

PharFileInfo::isCompressedGZReturns whether the entry is compressed using gz

Beschreibung

bool PharFileInfo::isCompressedGZ ( void )

Hinweis:

Diese Methode wurde beginnend mit Version 2.0.0 der phar-Extension entfernt. Alternative Implementationen bieten PharFileInfo::isCompressed(), PharFileInfo::decompress() und PharFileInfo::compress().

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
try {
    
$p = new Phar('/path/to/my.phar'0'my.phar');
    
$p['myfile.txt'] = 'hi';
    
$p['myfile2.txt'] = 'hi';
    
$p['myfile3.txt'] = 'hi';
    
$p['myfile2.txt']->setCompressedGZ();
    
$p['myfile3.txt']->setCompressedBZIP2();
    
$file $p['myfile.txt'];
    
$file2 $p['myfile2.txt'];
    
$file3 $p['myfile3.txt'];
    
var_dump($file->isCompressedGZ());
    
var_dump($file2->isCompressedGZ());
    
var_dump($file3->isCompressedGZ());
} catch (
Exception $e) {
    echo 
'Create/modify on phar my.phar failed: '$e;
}
?>

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

bool(false)
bool(true)
bool(false)

Siehe auch


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)