Retrieve the encodings we can accept
Source
return $responses;
}
/**
* Retrieve the encodings we can accept
*
* @return string Accept-Encoding header value
*/
private static function accept_encoding() {
$type = [];
if (function_exists('gzinflate')) {
$type[] = 'deflate;q=1.0';
}
User Contributed Notes
You must log in before being able to contribute a note or feedback.