update : 2015.11.03
php.shukuma.com검색:
|
Phar::isCompressed(PHP >= 5.3.0, PECL phar >= 2.0.0) Phar::isCompressed — Returns Phar::GZ or PHAR::BZ2 if the entire phar archive is compressed (.tar.gz/tar.bz and so on) 설명
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 인수No parameters. 반환값
Phar::GZ, Phar::BZ2 or 예제
Example #1 A Phar::isCompressed() example
<?php 위 예제의 출력: bool(false) bool(false) bool(true) 참고
|