PclZip::__construct() –
You appear to be a bot. Output may be restricted
Description
Usage
PclZip::__construct( $p_zipname );
Parameters
- $p_zipname
- ( mixed ) required –
Returns
void
Source
File name: wordpress/wp-admin/includes/class-pclzip.php
Lines:
1 to 17 of 17
function __construct($p_zipname) { // ----- Tests the zlib if (!function_exists('gzopen')) { die('Abort '.basename(__FILE__).' : Missing zlib extensions'); } // ----- Set the attributes $this->zipname = $p_zipname; $this->zip_fd = 0; $this->magic_quotes_status = -1; // ----- Return return; }