Compression adapter for Tar

 Methods

Class constructor

__construct(array $options) 

Parameters

$options

array

(Optional) Options to set

Exceptions

\Zend\Filter\Exception\ExtensionNotLoadedException if Archive_Tar component not available

Compresses the given content

compress(string $content) : string

Parameters

$content

string

Exceptions

\Zend\Filter\Exception\RuntimeException if unable to create temporary file
\Zend\Filter\Exception\RuntimeException if unable to create archive

Returns

string

Decompresses the given content

decompress(string $content) : string

Parameters

$content

string

Exceptions

\Zend\Filter\Exception\RuntimeException if unable to find archive
\Zend\Filter\Exception\RuntimeException if error occurs decompressing archive

Returns

string

Returns the set archive

getArchive() : string

Returns

string

Returns the set compression mode

getMode() : string

Returns

string

Returns one or all set options

getOptions(string $option) : mixed
Inherited

inherited_from \Zend\Filter\Compress\AbstractCompressionAlgorithm::getOptions()

Parameters

$option

string

(Optional) Option to return

Returns

mixed

Returns the set target path

getTarget() : string

Returns

string

Sets the archive to use for de-/compression

setArchive(string $archive) : \Zend\Filter\Compress\self

Parameters

$archive

string

Archive to use

Returns

\Zend\Filter\Compress\self

Compression mode to use

setMode(string $mode) : \Zend\Filter\Compress\self

Either Gz or Bz2.

Parameters

$mode

string

Exceptions

\Zend\Filter\Exception\InvalidArgumentException for invalid $mode values
\Zend\Filter\Exception\ExtensionNotLoadedException if bz2 mode selected but extension not loaded
\Zend\Filter\Exception\ExtensionNotLoadedException if gz mode selected but extension not loaded

Returns

\Zend\Filter\Compress\self

Sets all or one option

setOptions(array $options) : \Zend\Filter\Compress\self
Inherited

inherited_from \Zend\Filter\Compress\AbstractCompressionAlgorithm::setOptions()

Parameters

$options

array

Returns

\Zend\Filter\Compress\self

Sets the target path to use

setTarget(string $target) : \Zend\Filter\Compress\self

Parameters

$target

string

Exceptions

\Zend\Filter\Exception\InvalidArgumentException if target path does not exist

Returns

\Zend\Filter\Compress\self

Returns the adapter name

toString() : string

Returns

string

 Properties

 

Compression Options array( 'archive' => Archive to use 'target' => Target to write the files to )

$options : array