PclZip::privConvertHeader2FileInfo() –
You appear to be a bot. Output may be restricted
Description
Usage
PclZip::privConvertHeader2FileInfo( $p_header, $p_info );
Parameters
- $p_header
- ( mixed ) required –
- $p_info
- ( mixed ) required –
Returns
void
Source
File name: wordpress/wp-admin/includes/class-pclzip.php
Lines:
1 to 21 of 21
function privConvertHeader2FileInfo($p_header, &$p_info) { $v_result=1; // ----- Get the interesting attributes $v_temp_path = PclZipUtilPathReduction($p_header['filename']); $p_info['filename'] = $v_temp_path; $v_temp_path = PclZipUtilPathReduction($p_header['stored_filename']); $p_info['stored_filename'] = $v_temp_path; $p_info['size'] = $p_header['size']; $p_info['compressed_size'] = $p_header['compressed_size']; $p_info['mtime'] = $p_header['mtime']; $p_info['comment'] = $p_header['comment']; $p_info['folder'] = (($p_header['external']&0x00000010)==0x00000010); $p_info['index'] = $p_header['index']; $p_info['status'] = $p_header['status']; $p_info['crc'] = $p_header['crc']; // ----- Return return $v_result; }