API15:JArchiveZip/hasNativeSupport
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
Method to determine if the server has native zip support for faster handling
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax
hasNativeSupport()
Returns
boolean True if php has native ZIP support
Defined in
libraries/joomla/filesystem/archive/zip.php
Importing
jimport( 'joomla.filesystem.archive.zip' );
Source Body
function hasNativeSupport() { return (function_exists('zip_open') && function_exists('zip_read')); }
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
<CodeExamplesForm />
