Home  >  Article  >  Backend Development  >  PHP implements a method to determine whether a page or image has been compressed by gzip

PHP implements a method to determine whether a page or image has been compressed by gzip

墨辰丷
墨辰丷Original
2018-05-24 10:23:521465browse

The following editor will bring you a PHP method to determine whether a page or image has been compressed by gzip. The editor thinks it’s pretty good, so I’ll share it with you now and give it as a reference. Let’s follow the editor and take a look

Use php to determine whether the page or image has been compressed by gzip

1. Use get_headers

Page content

'one','value'=>1),
 array('name'=>'two','value'=>2),
 array('name'=>'three','value'=>3)
);

header('content-type:application/json');
echo json_encode($data);
?>

Use get_headers to determine whether to use gzip compression

Test results:

When ob_gzhandler is added, true is returned, false is returned after deletion

2. Use curl

Picture

Use curl to determine whether to use gzip compression

Test results:

When ob_gzhandler is added, true is returned, false is returned after deletion

The above is the entire content of this article, I hope it will be helpful to everyone’s study.


Related recommendations:

PHP function converts any number into the corresponding Chinese character number

Thoughts caused by protected in php

PHPregular expression capturing group and non-capturing group

The above is the detailed content of PHP implements a method to determine whether a page or image has been compressed by gzip. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn