Phar::isCompressed

(PHP 5 >= 5.3.0, PHP 7, PECL phar >= 2.0.0)

Phar::isCompressedReturns Phar::GZ or PHAR::BZ2 if the entire phar archive is compressed (.tar.gz/tar.bz and so on)

说明

public Phar::isCompressed ( void ) : mixed

Note:

此方法需要 将 php.ini 中的 phar.readonly 设为 0 以适合 Phar 对象. 否则, 将抛出PharException.

Returns Phar::GZ or PHAR::BZ2 if the entire phar archive is compressed (.tar.gz/tar.bz and so on). Zip-based phar archives cannot be compressed as a file, and so this method will always return FALSE if a zip-based phar archive is queried.

参数

No parameters.

返回值

Phar::GZ, Phar::BZ2 or FALSE

范例

Example #1 A Phar::isCompressed() example

<?php
try {
    
$phar1 = new Phar('myphar.zip.phar');
    
var_dump($phar1->isCompressed());
    
$phar2 = new Phar('myuncompressed.tar.phar');
    
var_dump($phar2->isCompressed());
    
$phar2->compress(Phar::GZ);
    
var_dump($phar2->isCompressed() == Phar::GZ);
} catch (
Exception $e) {
}
?>

以上例程会输出:

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

参见

相关文章
php mysqlnd qc 函数 returns information on the current handler the number of cache entries and cache entries if availablephp phar compresses the entire phar archive using gzip or bzip2 compressionphp phar convert a phar archive to a non executable tar or zip filephp phar returns the number of entries files in the phar archivephp phar decompresses the entire phar archivephp what makes a phar a phar and not a tar or a zip? phar file formatphp phar returns phar archive meta dataphp phar returns phar gz or phar bz2 if the entire phar archive is compressed .tar.gz/tar.bz and so on php phar returns true if the phar archive is based on the tar/phar/zip file format depending on the parameterphp phar returns true if the phar archive can be modifiedphp phar returns the full path on disk or full phar url to the currently executing phar archivephp phardata compresses the entire tar/zip archive using gzip or bzip2 compressionphp phardata convert a phar archive to a non executable tar or zip filephp phardata convert a non executable tar/zip archive to an executable phar archivephp phardata decompresses the entire phar archivephp phardata extract the contents of a tar/zip archive to a directoryphp phardata returns true if the tar/zip archive can be modifiedphp pharfileinfo returns the actual size of the file with compression inside the phar archivephp pharfileinfo returns whether the entry is compressed using gzphp pharfileinfo uncompresses the current phar entry within the phar if it is compressed
关注编程学问公众号