PHP Portal » PHP Handbuch » PharFileInfo::isCompressedGZ

Werbung

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

PHP Code
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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