API16

JArchiveZip/extract

From Joomla! Documentation

< API16:JArchiveZip
Revision as of 17:47, 22 March 2010 by Doxiki (talk | contribs) (New page: ===Description=== Extract a ZIP compressed file to a given path <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>Edit Descripton...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

The "API16" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

Description[edit]

Extract a ZIP compressed file to a given path

[Edit Descripton]

Template:Description:JArchiveZip/extract

Syntax[edit]

extract($archive, $destination, $options=array())
Parameter Name Default Value Description
$archive $archive Path to ZIP archive to extract
$destination $destination Path to extract archive into
$options array() $options Extraction options [unused]

Returns[edit]

boolean True if successful

Defined in[edit]

libraries/joomla/filesystem/archive/zip.php

Importing[edit]

jimport( 'joomla.filesystem.archive.zip' );

Source Body[edit]

function extract($archive, $destination, $options = array ())
{
        if (! is_file($archive))
        {
                $this->set('error.message', 'Archive does not exist');
                return false;
        }

        if ($this->hasNativeSupport()) {
                return ($this->_extractNative($archive, $destination, $options))? true : JError::raiseWarning(100, $this->get('error.message'));
        } else {
                return ($this->_extract($archive, $destination, $options))? true : JError::raiseWarning(100, $this->get('error.message'));
        }
}

[Edit See Also] Template:SeeAlso:JArchiveZip/extract

Examples[edit]

<CodeExamplesForm />