|
PharData::decompressDecompresses the entire Phar archive Description
public PharDatanull PharData::decompress(stringnull
$extension = null )For tar-based archives, this method decompresses the entire archive. For Zip-based archives, this method fails with an exception. The zlib extension must be enabled to decompress an archive compressed with gzip compression, and the bzip2 extension must be enabled in order to decompress an archive compressed with bzip2 compression.
In addition, this method automatically renames the file extension of the archive,
Parameters
Return Values
A PharData object is returned on success,
or Errors/ExceptionsThrows BadMethodCallException if the zlib extension is not available, or the bzip2 extension is not enabled. Changelog
Examples
Example #1 A PharData::decompress example
See Also
|