Home Backend Development PHP Tutorial About ob_start()_PHP Tutorial

About ob_start()_PHP Tutorial

Jul 14, 2016 am 10:07 AM
start effect about how try to find mold Vague use Own

ob_start()

I only talk about its functions, not how to use it. You can find it yourself. It is all available online. Today I just want to help people who are a little confused clarify it.
Yesterday I saw a code from a friend’s company that is similar to the code above. To put it bluntly, it is meaningless code (I asked, not for the purpose of setcookie header).
After I thought about it carefully, I searched online and found that quite a few beginners (technical beginners, not necessarily first-year PHP students, some people have been beginners their entire lives) do not understand the role of ob. , but ob is often called output buffer and output cache on the Internet, so many people regard the ob series functions as tools to speed up PHP page display.
In fact, ob is the abbreviation of output buffering, not output cache. If ob is used correctly, it can help the speed to a certain extent, but blindly adding the ob function will only increase the extra burden on the CPU. Next I will talk about the basic function of ob.
1. Prevent errors caused by using setcookie, header, or session_start functions after the browser has output. (I originally thought that the code mentioned at the beginning had such a function, but later my friend said it was not the case). In fact, it is better to use this kind of usage less and develop good coding habits.
2. Capture the output of some unobtainable functions. For example, phpinfo will output a lot of HTML, but we cannot use a variable such as $info=phpinfo(); to capture it. At this time, ob will come in handy
3. Process the output content, such as gzip compression, conversion between Simplified and Traditional Chinese, and some string replacement.
4. Generate static files, which is actually to capture the output of the entire page and then save it as a file. It is often used in HTML generation or full page caching.
Regarding the GZIP compression mentioned in the third point just mentioned, many people may want to use it, but have not really used it. In fact, by slightly modifying my friend's code, you can achieve gzip compression of the page.
ob_start();
....
ob_clean();
Any output between these two sentences can be obtained using ob_get_contents(); without outputting it to the browser.
Classic application: Write phpinfo() information to a file.
ob_start();
phpinfo();
$phpinfo = ob_get_contents();
//File read and write operations
ob_clean();

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/477867.htmlTechArticleob_start() only talks about its function, not how to use it. You can find it yourself how to use it. It’s all available online. Today I’m just here to help. People who were a little confused became clear. Yesterday I saw the code of a friend’s company that was similar to...
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 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 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)

How to blur photos with Yitian camera How to blur photos with Yitian camera Feb 23, 2024 pm 06:40 PM

You can blur the photos in Yitian Camera, so how to blur the photos? Users can click Edit to select a photo, then click Effects and select Blur to blur the photo. This introduction to how to blur photos can tell you the specific content. The following is a detailed introduction, come and take a look! Yitian Camera usage tutorial. How to blur photos with Yitian Camera. Answer: Go to Edit-Special Effects-Blur. The specific process: 1. First open the app and click Edit on the lower left. 2. Then click on a picture and click the edit button. 3. Then click the special effects button below. 4. You can find the blur function below. 5. Then select the magnification of the blur.

Analysis of the function and principle of nohup Analysis of the function and principle of nohup Mar 25, 2024 pm 03:24 PM

Analysis of the role and principle of nohup In Unix and Unix-like operating systems, nohup is a commonly used command that is used to run commands in the background. Even if the user exits the current session or closes the terminal window, the command can still continue to be executed. In this article, we will analyze the function and principle of the nohup command in detail. 1. The role of nohup: Running commands in the background: Through the nohup command, we can let long-running commands continue to execute in the background without being affected by the user exiting the terminal session. This needs to be run

What is a Bluetooth adapter used for? What is a Bluetooth adapter used for? Feb 19, 2024 pm 05:22 PM

What does a Bluetooth adapter do? With the continuous development of science and technology, wireless communication technology has also been rapidly developed and popularized. Among them, Bluetooth technology, as a short-distance wireless communication technology, is widely used in data transmission and connection between various devices. The Bluetooth adapter plays a vital role as an important device that supports Bluetooth communication. A Bluetooth adapter is a device that can turn a non-Bluetooth device into a device that supports Bluetooth communication. It realizes wireless connection and data transmission between devices by converting wireless signals into Bluetooth signals. Bluetooth adapter

Understand the role and usage of Linux DTS Understand the role and usage of Linux DTS Mar 01, 2024 am 10:42 AM

Understand the role and usage of LinuxDTS In the development of embedded Linux systems, Device Tree (DeviceTree, DTS for short) is a data structure that describes hardware devices and their connection relationships and attributes in the system. The device tree enables the Linux kernel to run flexibly on different hardware platforms without modifying the kernel. In this article, the function and usage of LinuxDTS will be introduced, and specific code examples will be provided to help readers better understand. 1. The role of device tree device tree

Explore the importance and role of define function in PHP Explore the importance and role of define function in PHP Mar 19, 2024 pm 12:12 PM

The importance and role of the define function in PHP 1. Basic introduction to the define function In PHP, the define function is a key function used to define constants. Constants will not change their values ​​during the running of the program. Constants defined using the define function can be accessed throughout the script and are global. 2. The syntax of define function The basic syntax of define function is as follows: define("constant name","constant value&qu

What is PHP used for? Explore the role and functions of PHP What is PHP used for? Explore the role and functions of PHP Mar 24, 2024 am 11:39 AM

PHP is a server-side scripting language widely used in web development. Its main function is to generate dynamic web content. When combined with HTML, it can create rich and colorful web pages. PHP is powerful. It can perform various database operations, file operations, form processing and other tasks, providing powerful interactivity and functionality for websites. In the following articles, we will further explore the role and functions of PHP, with detailed code examples. First, let’s take a look at a common use of PHP: dynamic web page generation: P

How to identify genuine and fake shoe boxes of Nike shoes (master one trick to easily identify them) How to identify genuine and fake shoe boxes of Nike shoes (master one trick to easily identify them) Sep 02, 2024 pm 04:11 PM

As a world-renowned sports brand, Nike's shoes have attracted much attention. However, there are also a large number of counterfeit products on the market, including fake Nike shoe boxes. Distinguishing genuine shoe boxes from fake ones is crucial to protecting the rights and interests of consumers. This article will provide you with some simple and effective methods to help you distinguish between real and fake shoe boxes. 1: Outer packaging title By observing the outer packaging of Nike shoe boxes, you can find many subtle differences. Genuine Nike shoe boxes usually have high-quality paper materials that are smooth to the touch and have no obvious pungent smell. The fonts and logos on authentic shoe boxes are usually clear and detailed, and there are no blurs or color inconsistencies. 2: LOGO hot stamping title. The LOGO on Nike shoe boxes is usually hot stamping. The hot stamping part on the genuine shoe box will show

What is the Oracle home directory? Detailed explanation of the concept and function of Oracle home directory What is the Oracle home directory? Detailed explanation of the concept and function of Oracle home directory Mar 08, 2024 am 08:18 AM

Title: Oracle Master Catalog: Concepts, Functions and Code Examples The master catalog (MasterCatalog) in the Oracle database is the basic directory structure of the database and is used to store metadata about database objects and other database information. The home directory plays the role of the management center of the database, recording information about all objects in the database, such as tables, indexes, views, users, etc., and also includes database configuration information and permission information. In Oracle database, the concept of home directory is very important, it is used

See all articles