GC_Http_Encoding::is_available()
最后更新于:2021-12-01 11:12:41
GC_()Whether decompression and compression are supported by the PHP version.
响应
(bool)
源文件
文件: gc-includes/class-gc-http-encoding.php
public static function is_available() {
return ( function_exists( 'gzuncompress' ) || function_exists( 'gzdeflate' ) || function_exists( 'gzinflate' ) );
}