API15

JArchiveZip/hasNativeSupport

From Joomla! Documentation

< API15:JArchiveZip
Revision as of 17:20, 22 March 2010 by Doxiki (talk | contribs) (New page: ===Description=== Method to determine if the server has native zip support for faster handling <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>[[Description:JArchi...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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]

Method to determine if the server has native zip support for faster handling

[Edit Descripton]

Template:Description:JArchiveZip/hasNativeSupport

Syntax[edit]

hasNativeSupport()


Returns[edit]

boolean True if php has native ZIP support

Defined in[edit]

libraries/joomla/filesystem/archive/zip.php

Importing[edit]

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

Source Body[edit]

function hasNativeSupport()
{
        return (function_exists('zip_open') && function_exists('zip_read'));
}

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

Examples[edit]

<CodeExamplesForm />