PharFileInfo->isCompressedBZIP2

(no version information, might be only in CVS)

PharFileInfo->isCompressedBZIP2 -- Returns whether the entry is compressed using bzip2

Описание

bool PharFileInfo->isCompressedBZIP2 ( void )

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

Возвращаемые значения

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

Примеры

Пример 1. A PharFileInfo->isCompressedBZIP2() example

<?php
$p
= new Phar('my.phar');
$p['myfile.txt'] = 'hi';
$file = $p['myfile.txt'];
var_dump($file->isCompressedBZIP2());
?>

Результат выполнения данного примера:

bool(false)

Смотрите также

PharFileInfo->getCompressedSize()
PharFileInfo->isCompressedGZ()
PharFileInfo->isCompressed()