WP_Http_Encoding::should_decode( array|string $headers )

Whether the content be decoded based on the headers.


Description Description


Parameters Parameters

$headers

(array|string) (Required) All of the available headers.


Top ↑

Return Return

(bool)


Top ↑

Source Source

File: wp-includes/class-wp-http-encoding.php

	public static function should_decode( $headers ) {
		if ( is_array( $headers ) ) {
			if ( array_key_exists( 'content-encoding', $headers ) && ! empty( $headers['content-encoding'] ) ) {
				return true;
			}
		} elseif ( is_string( $headers ) ) {
			return ( stripos( $headers, 'content-encoding:' ) !== false );
		}

		return false;
	}

Top ↑

Changelog Changelog

Changelog
Version Description
2.8.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.