API15

JArchiveZip/checkZipData

From Joomla! Documentation

< API15:JArchiveZip
Revision as of 17:20, 22 March 2010 by Doxiki (talk | contribs) (New page: ===Description=== Checks to see if the data is a valid ZIP file. <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>[[Description:JArchiveZip/checkZipData|Edit Descri...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

The "API15" 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]

Checks to see if the data is a valid ZIP file.

[Edit Descripton]

Template:Description:JArchiveZip/checkZipData

Syntax[edit]

checkZipData(&$data)
Parameter Name Default Value Description
$data ZIP archive data buffer

Returns[edit]

boolean True if valid, false if invalid.

Defined in[edit]

libraries/joomla/filesystem/archive/zip.php

Importing[edit]

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

Source Body[edit]

function checkZipData(& $data) {
        if (strpos($data, $this->_fileHeader) === false) {
                return false;
        } else {
                return true;
        }
}

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

Examples[edit]

<CodeExamplesForm />