PclZip::privErrorLog() –
You appear to be a bot. Output may be restricted
Description
Usage
PclZip::privErrorLog( $p_error_code, $p_error_string );
Parameters
- $p_error_code
- ( mixed ) optional –
- $p_error_string
- ( mixed ) optional –
Returns
void
Source
File name: wordpress/wp-admin/includes/class-pclzip.php
Lines:
1 to 10 of 10
function privErrorLog($p_error_code=0, $p_error_string='') { if (PCLZIP_ERROR_EXTERNAL == 1) { PclError($p_error_code, $p_error_string); } else { $this->error_code = $p_error_code; $this->error_string = $p_error_string; } }