Table of Contents
Articles you may be interested in:
Home Backend Development PHP Tutorial Detailed explanation of how PHP uses zlib extension to implement GZIP compressed output

Detailed explanation of how PHP uses zlib extension to implement GZIP compressed output

Jun 27, 2018 pm 06:00 PM
gzip php Compressed output

This article mainly introduces the method of PHP using zlib extension to achieve GZIP compression output. It analyzes in detail the related operation skills of PHP gzip configuration and compression output in the form of examples. Friends in need can refer to this article

The example describes how PHP uses the zlib extension to implement GZIP compressed output. Share it with everyone for your reference, the details are as follows:

Generally, when we have a large amount of data transmission and hope to reduce the bandwidth pressure on the server, we will adopt a method to compress the file transmission. Using zlib in PHP can also implement gzip Compressed output, let’s look at a summary of various methods of GZIP compressed output.

GZIP (GNU-ZIP) is a compression technology. After GZIP compression, the page size can be reduced to 30% or even smaller than the original size. In this way, users will feel refreshed and happy when browsing!

Preparation

1. Can’t find the php_zlib.dll file?

Zlib compression has been built into php since php4.3, so at least in Windows environment there is no need to install zlib.

2. Install and build the php running environment

Since it is not enough to enable gzip configuration through the php.ini configuration file to achieve php gzip compression output, it requires the support of apache, so it is recommended to install and build php apache mysql operating environment.

php gzip configuration steps

1. Open the php.ini configuration file and find zlib.output_compression = Off, Change

zlib.output_compression = Off
;zlib.output_compression_level = -1
Copy after login

to

zlib.output_compression = On
zlib.output_compression_level = 6
Copy after login

Example 1

PHP uses zlib extension to implement page GZIP compression output

Code

function ob_gzip($content) // $content 就是要压缩的页面内容
{
if(!headers_sent() && extension_loaded("zlib") && strstr($_SERVER["HTTP_ACCEPT_ENCODING"],"gzip"))//判断页面头部信息是否输出,PHP中zlib扩 展是否已经加载,浏览器是否支持GZIP技术
{
$content = gzencode($content." n//此页已压缩",9); //为准备压缩的内容贴上"//此页已压缩"的注释标签,然后用zlib提供的gzencode()函数执行级别为9的压缩,这个参数值范围是0-9,0 表示无压缩,9表示最大压缩,当然压缩程度越高越费CPU。
//用header()函数给浏览器发送一些头部信息,告诉浏览器这个页面已经用GZIP压缩过了!
header("Content-Encoding: gzip");
header("Vary: Accept-Encoding");
header("Content-Length: ".strlen($content));
}
return $content; //返回压缩的内容
Copy after login

After the function is written, call it with ob_start , so the original ob_start() becomes


Copy code The code is as follows:

ob_start(' ob_gzip'); //Add a parameter to ob_start(), and the parameter name is the function name just now. In this way, when the content enters the buffer, PHP will call the ob_gzip function to compress it.

Finally end buffer


Copy code The code is as follows:

ob_end_flush(); //End buffer area, output content. Of course, you don't need this function, because the buffer content will be automatically output at the end of the program execution.

Final complete example

<?php
//调用一个函数名为ob_gzip的内容进行压缩
ob_start(&#39;ob_gzip&#39;);
//输出内容
ob_end_flush();
//这是ob_gzip函数
function ob_gzip($content)
{
if(!headers_sent()&&extension_loaded("zlib")
&&strstr($_SERVER["HTTP_ACCEPT_ENCODING"],"gzip"))
{
$content = gzencode($content." n//此页已压缩",9);
header("Content-Encoding: gzip");
header("Vary: Accept-Encoding");
header("Content-Length: ".strlen($content));
}
return $content;
}
?>
Copy after login

Example 2

zlib compression and decompression of swf files Code

Example of file:

//没有加入判断swf文件是否已经压缩,入需要可以根据文件的第一个字节是&#39;F&#39;或者&#39;C&#39;来判断
压缩swf文件:
//--------------------------------------------------------------------------------------------------
//文件名
$filename = "test.swf";
//打开文件
$rs = fopen($filename,"r");
//读取文件的数据
$str = fread($rs,filesize($filename));
//设置swf头文件
$head = substr($str,1,8);
$head = "C".$head;
//获取swf文件内容
$body = substr($str,8);
//压缩文件内容,使用最高压缩级别9
$body = gzcompress($body, 9);
//合并文件头和内容
$str = $head.$body;
//关闭读取的文件流
fclose($rs);
//创建一个新的文件
$ws = fopen("create.swf","w");
//写文件
fwrite($ws,$str);
//关闭文件留
fclose($ws);
//----------------------------------------------------------------------------------------------------
?>
Copy after login

Unzip swf file:

//----------------------------------------------------------------------------------------------------
//文件名
$filename = "test.swf";
//打开文件
$rs = fopen($filename,"r");
//读取文件的数据
$str = fread($rs,filesize($filename));
//设置swf头文件
$head = substr($str,1,8);
$head = "F".$head;
//获取swf文件内容
$body = substr($str,8);
//解压缩文件内容
$body = gzuncompress($body);
//合并文件头和内容
$str = $head.$body;
//关闭读取的文件流
fclose($rs);
//创建一个新的文件
$ws = fopen("create.swf","w");
//写文件
fwrite($ws,$str);
//关闭文件留
fclose($ws);
//----------------------------------------------------------------------------------------------------
?>
Copy after login

Example 3

Enable php zlib (gzip) compression output

php gzip configuration knowledge points:

1. By default, PHP does not enable zlib whole-site compression output, but uses the ob_gzhandler function on pages that require compressed output. You can only choose one of the two, otherwise an error will be reported.

2, zlib.output_compressionThe default value is Off, you can set it to On, or output buffer size (default is 4k)

3, zlib.output_compression_level represents the compression ratio. The default recommended compression ratio is 6. The optional range is 1-9. -1 represents turning off php zlib (gzip) compression

2. Save the php.ini configuration file , and restart the apache server

3. Open the apache configuration file httpd.conf, configure and load deflate_module

This step is the most critical step to enable php gzip compression output configuration. Many netizens will say that even though I have enabled the php gzip configuration in the php.ini configuration file, I still don’t realize php gzip compression. This is because apache is not loaded with deflate_module. The method is as follows, change

#LoadModule deflate_module modules/mod_deflate.so
Copy after login

Remove the # sign at the beginning and restart apache.

Articles you may be interested in:

Detailed explanation of how PHP implements distributed memcache to set up web cluster session synchronization

Example explanation of large file cutting and merging function implemented by PHP

Example explanation of simple word grouping algorithm implemented by PHP

The above is the detailed content of Detailed explanation of how PHP uses zlib extension to implement GZIP compressed output. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

See all articles