API16:JArchiveZip/checkZipData
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
Contents |
Description
Checks to see if the data is a valid ZIP file.
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax
checkZipData(&$data)
| Parameter Name | Default Value | Description |
|---|---|---|
| &$data | $data ZIP archive data buffer |
Returns
boolean True if valid, false if invalid.
Defined in
libraries/joomla/filesystem/archive/zip.php
Importing
jimport( 'joomla.filesystem.archive.zip' );
Source Body
function checkZipData(& $data) { if (strpos($data, $this->_fileHeader) === false) { return false; } else { return true; } }
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
<CodeExamplesForm />
