Home Backend Development PHP Tutorial Comparison of PHP4 reference file statements_PHP tutorial

Comparison of PHP4 reference file statements_PHP tutorial

Jul 21, 2016 pm 04:06 PM
exist Compared Quote us document hour have of programming statement

Comparison of PHP4 reference file statements
Ling Xin Yijian
When we program, there are some things that often need to be used repeatedly. It is really inefficient to enter them every time they are used. Therefore, there are statements in programming languages ​​that specifically handle these operations. We call them "reference file statements"! When needed, just use these reference statements to directly introduce the needed stuff, and the efficiency will be improved a lot at once, haha~~~
In PHP4 we can use require();include() ;require_once();include_once; These four reference statements directly reference existing files into the program. Reasonable use of them can provide a lot of efficiency. Of course, this can only be understood after understanding their direct similarities and differences. This article focuses on how to use them!

require() statement
Syntax: require("statement");

Parameters: "statement" is the name of the program segment file to be referenced.

Note: The require() statement will read the file referenced by require before the PHP program is executed, so require is usually placed at the beginning of the program. So be careful, the require statement is a bit strong, I mean, no matter whether the program really needs the referenced files, as long as you use the require statement, it will include them! Even if you use this function to include in a conditional control statement, even if the condition is not true, the referenced file will be included! Zombies are formed. These zombies will not have any visible effect during operation, but it will obviously increase the burden, so pay special attention to this! If an inclusion error occurs using the require statement, the program will output an error message and stop running! !


include() statement
Syntax: include("statement");

Parameters: "statement" is the name of the program segment file to be referenced.

Note: As you can see, the syntax of require() and include() is the same. But their functions are slightly different. The include statement only reads in the files to be included when it is executed. To facilitate error handling, use the include statement. If an include error occurs, the program will skip the include statement. Although the error message will be displayed, the program will continue to execute! ! (This is different from what some textbooks say, but please believe me or try it yourself! Trust your own judgment!!)


require_once() statement
Grammar :require_once("statement");

Explanation: It can be said to be an extension of require. Its functions and usage are similar, but the difference is that the require_once statement has a reference chain, which can ensure that the file is added to your program. Only once, and will avoid conflicts between variable values ​​and function names. ^_^


include_once() statement
Syntax: include_once("statement");

Description: Like the require_once statement, the include_once statement extends the function of include. During program execution, the specified file is included. If the program referenced from the file has been included previously, include_once() will not include it again. That is to say, the same file can only be referenced once! ! !
Something else you need to know. The referenced file will no longer inherit the original PHP delimiter "". If the referenced document contains PHP code, It is necessary to reuse the delimiter "" to mark PHP code. In PHP4, reference statements have certain features of functions, supporting return values ​​and program diversion, which are not available in PHP3! Let me emphasize: when referencing a file, the system does not execute this page separately, but introduces the code of this page into the main program to which it belongs.


www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/315472.htmlTechArticleComparison of PHP4 reference file statements Ling Xin Yijian When we program, there are some things that often need to be used repeatedly. It would be too inefficient to enter it every time you use it. ...
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 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months 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)

Which one has more potential, SOL coin or BCH coin? What is the difference between SOL coin and BCH coin? Which one has more potential, SOL coin or BCH coin? What is the difference between SOL coin and BCH coin? Apr 25, 2024 am 09:07 AM

Currently, the potential coins that are favored by the currency circle include SOL coin and BCH coin. SOL is the native token of the Solana blockchain platform. BCH is the token of the BitcoinCash project, which is a fork currency of Bitcoin. Because they have different technical characteristics, application scenarios and development directions, it is difficult for investors to make a choice between the two. I want to analyze which one has more potential, SOL currency or BCH? Invest again. However, the comparison of currencies requires a comprehensive analysis based on the market, development prospects, project strength, etc. Next, the editor will tell you in detail. Which one has more potential, SOL coin or BCH? In comparison, SOL coin has more potential. Determining which one has more potential, SOL coin or BCH, is a complicated issue because it depends on many factors.

Remove duplicate values ​​from PHP array using regular expressions Remove duplicate values ​​from PHP array using regular expressions Apr 26, 2024 pm 04:33 PM

How to remove duplicate values ​​from PHP array using regular expressions: Use regular expression /(.*)(.+)/i to match and replace duplicates. Iterate through the array elements and check for matches using preg_match. If it matches, skip the value; otherwise, add it to a new array with no duplicate values.

What are the benefits of C++ functions returning reference types? What are the benefits of C++ functions returning reference types? Apr 20, 2024 pm 09:12 PM

The benefits of functions returning reference types in C++ include: Performance improvements: Passing by reference avoids object copying, thus saving memory and time. Direct modification: The caller can directly modify the returned reference object without reassigning it. Code simplicity: Passing by reference simplifies the code and requires no additional assignment operations.

In-depth analysis of pointers and references in C++ to optimize memory usage In-depth analysis of pointers and references in C++ to optimize memory usage Jun 02, 2024 pm 07:50 PM

By using pointers and references, memory usage in C++ can be optimized: Pointers: store addresses of other variables and can point to different variables, saving memory, but may generate wild pointers. Reference: Aliased to another variable, always points to the same variable, does not generate wild pointers, and is suitable for function parameters. Optimizing memory usage can improve code efficiency and performance by avoiding unnecessary copies, reducing memory allocations, and saving space.

What is programming for and what is the use of learning it? What is programming for and what is the use of learning it? Apr 28, 2024 pm 01:34 PM

1. Programming can be used to develop various software and applications, including websites, mobile applications, games, and data analysis tools. Its application fields are very wide, covering almost all industries, including scientific research, health care, finance, education, entertainment, etc. 2. Learning programming can help us improve our problem-solving skills and logical thinking skills. During programming, we need to analyze and understand problems, find solutions, and translate them into code. This way of thinking can cultivate our analytical and abstract abilities and improve our ability to solve practical problems.

The Key to Coding: Unlocking the Power of Python for Beginners The Key to Coding: Unlocking the Power of Python for Beginners Oct 11, 2024 pm 12:17 PM

Python is an ideal programming introduction language for beginners through its ease of learning and powerful features. Its basics include: Variables: used to store data (numbers, strings, lists, etc.). Data type: Defines the type of data in the variable (integer, floating point, etc.). Operators: used for mathematical operations and comparisons. Control flow: Control the flow of code execution (conditional statements, loops).

Problem-Solving with Python: Unlock Powerful Solutions as a Beginner Coder Problem-Solving with Python: Unlock Powerful Solutions as a Beginner Coder Oct 11, 2024 pm 08:58 PM

Pythonempowersbeginnersinproblem-solving.Itsuser-friendlysyntax,extensivelibrary,andfeaturessuchasvariables,conditionalstatements,andloopsenableefficientcodedevelopment.Frommanagingdatatocontrollingprogramflowandperformingrepetitivetasks,Pythonprovid

How does golang framework compare with other popular frameworks? How does golang framework compare with other popular frameworks? Jun 03, 2024 pm 06:36 PM

The Go framework stands out for its excellent performance and scalability. They execute faster and consume less memory than interpreted languages. Compared to Django and Express.js, the Go framework is superior in these aspects. While Django is suitable for beginners and Express.js offers a broader ecosystem, the Go framework is a recommended choice for developers looking for high performance and scalability.

See all articles