Phar::canCompress

(no version information, might be only in CVS)

Phar::canCompress -- Returns whether phar extension supports compression using either zlib or bzip2

Beschreibung

bool Phar::canCompress ( void )

This should be used to test whether compression is possible prior to loading a phar archive containing compressed files.

Parameter Liste

Rückgabewerte

TRUE if compression/decompression is available, FALSE if not.

Beispiele

Beispiel 1. A Phar::canCompress() example

<?php
if (Phar::canCompress()) {
    echo
file_get_contents('phar://whatever.phar/internal/file.txt');
} else {
    echo
'no compression available';
}
?>

Siehe auch

PharFileInfo::isCompressed()