search
HomeBackend DevelopmentPHP TutorialThe difference between include, include_once, require, and require_once

The first thing to say is that the core functions of include, include_once, require, and require_once are all the same. They are equivalent to directly copying the code of the target web page.

Basically, if you don’t consider performance, you can achieve basic results by using include, include_once, require, and require_once. Basically, use it however you like.

The minor differences are as follows:

For example, there is a simple print statement in 1.php:

<?php echo "1" ?>

The result of running the following program:

<?php include &#39;1.php&#39;;
require &#39;1.php&#39;;

include_once &#39;1.php&#39;;
require_once &#39;1.php&#39;;
?>

is 2 1s instead of 4 1s, because include and require both import the specified file, _once means importing it only once, that is, the files that have been introduced before will not be imported again.

If written as:

<?php include_once &#39;1.php&#39;;
require_once &#39;1.php&#39;;
include &#39;1.php&#39;;
require &#39;1.php&#39;;
?>

the result will be 4 ones.

It is worth noting that although _once means that what has been introduced before will no longer be introduced, this statement will not check whether the code in the imported web page is the same. For example, there are two web pages with exactly the same code, untitled.html and untitled1.html. All are:



<meta http-equiv="Content-Type" c charset='utf-8"'>
<title>无标题文档</title>






If there is the following sentence:

<?php include_once &#39;untitled.html&#39;;
include_once &#39;untitled1.html&#39;;
?>

The result is like this:


See the same part appearing twice. _once just uses the file name to determine whether it has been introduced before or not.

So _once cannot prevent the phenomenon of the same resource being introduced multiple times with different names.

In addition to the different ways of handling imported files, the biggest difference between include and require is that include generates a warning when introducing a file that does not exist and the script will continue to execute, while require will cause a fatal error and the script will stop executing. .

For example, if a.php does not exist, the following code will still output b:

<?php include &#39;a.php&#39;;
echo &#39;b&#39;;
?>
but:

<?php require &#39;a.php&#39;;
echo &#39;b&#39;;
?>
will not.

There are also the following differences:

include() is a conditional inclusion function, while require() is an unconditional inclusion function

if(FALSE){ 
    include 'file.php'; //file.php不会被引入 
} 

if(FALSE){ 
    require 'file.php'; //file.php将会被引入
}
include has a return value, while require does not

$retVal = include(’somefile.php’);
if(!empty($retVal)){
  echo “文件包含成功”;
}else{
  echo “文件包含失败”;
}
is okay.

The files that need to be referenced during include() execution must be read and evaluated every time. The files that need to be referenced when require() is executed are only processed once. In fact, the content of the file that needs to be referenced during execution replaces the require() statement. It can be seen that if there is code that contains one of these instructions and code that may be executed multiple times, it is more efficient to use require(). If a different file is read each time the code is executed or there is an iteration through a set of files. To loop, use include().

require is usually used. This function is usually placed at the front of the PHP program. Before the PHP program is executed, it will first read in the file specified by require and make it a part of the PHP program web page. Commonly used functions can also be introduced into web pages in this way. The include method is usually used. This function is usually placed in the processing part of the process control. The PHP program webpage only reads the include file when it reads it. In this way, the process of program execution can be simplified.

In addition, regarding the issue of whether to add parentheses after include and require, theoretically: there is no difference in the execution results whether there are parentheses after include or require, but adding parentheses is less efficient, so if there is no parentheses later, then do not add parentheses. .

Copyright Statement: This article is an original article by the blogger and may not be reproduced without the blogger's permission.

The above introduces the differences between include, include_once, require, and require_once, including the relevant content. I hope it will be helpful to friends who are interested in PHP tutorials.

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
How can you prevent session fixation attacks?How can you prevent session fixation attacks?Apr 28, 2025 am 12:25 AM

Effective methods to prevent session fixed attacks include: 1. Regenerate the session ID after the user logs in; 2. Use a secure session ID generation algorithm; 3. Implement the session timeout mechanism; 4. Encrypt session data using HTTPS. These measures can ensure that the application is indestructible when facing session fixed attacks.

How do you implement sessionless authentication?How do you implement sessionless authentication?Apr 28, 2025 am 12:24 AM

Implementing session-free authentication can be achieved by using JSONWebTokens (JWT), a token-based authentication system where all necessary information is stored in the token without server-side session storage. 1) Use JWT to generate and verify tokens, 2) Ensure that HTTPS is used to prevent tokens from being intercepted, 3) Securely store tokens on the client side, 4) Verify tokens on the server side to prevent tampering, 5) Implement token revocation mechanisms, such as using short-term access tokens and long-term refresh tokens.

What are some common security risks associated with PHP sessions?What are some common security risks associated with PHP sessions?Apr 28, 2025 am 12:24 AM

The security risks of PHP sessions mainly include session hijacking, session fixation, session prediction and session poisoning. 1. Session hijacking can be prevented by using HTTPS and protecting cookies. 2. Session fixation can be avoided by regenerating the session ID before the user logs in. 3. Session prediction needs to ensure the randomness and unpredictability of session IDs. 4. Session poisoning can be prevented by verifying and filtering session data.

How do you destroy a PHP session?How do you destroy a PHP session?Apr 28, 2025 am 12:16 AM

To destroy a PHP session, you need to start the session first, then clear the data and destroy the session file. 1. Use session_start() to start the session. 2. Use session_unset() to clear the session data. 3. Finally, use session_destroy() to destroy the session file to ensure data security and resource release.

How can you change the default session save path in PHP?How can you change the default session save path in PHP?Apr 28, 2025 am 12:12 AM

How to change the default session saving path of PHP? It can be achieved through the following steps: use session_save_path('/var/www/sessions');session_start(); in PHP scripts to set the session saving path. Set session.save_path="/var/www/sessions" in the php.ini file to change the session saving path globally. Use Memcached or Redis to store session data, such as ini_set('session.save_handler','memcached'); ini_set(

How do you modify data stored in a PHP session?How do you modify data stored in a PHP session?Apr 27, 2025 am 12:23 AM

TomodifydatainaPHPsession,startthesessionwithsession_start(),thenuse$_SESSIONtoset,modify,orremovevariables.1)Startthesession.2)Setormodifysessionvariablesusing$_SESSION.3)Removevariableswithunset().4)Clearallvariableswithsession_unset().5)Destroythe

Give an example of storing an array in a PHP session.Give an example of storing an array in a PHP session.Apr 27, 2025 am 12:20 AM

Arrays can be stored in PHP sessions. 1. Start the session and use session_start(). 2. Create an array and store it in $_SESSION. 3. Retrieve the array through $_SESSION. 4. Optimize session data to improve performance.

How does garbage collection work for PHP sessions?How does garbage collection work for PHP sessions?Apr 27, 2025 am 12:19 AM

PHP session garbage collection is triggered through a probability mechanism to clean up expired session data. 1) Set the trigger probability and session life cycle in the configuration file; 2) You can use cron tasks to optimize high-load applications; 3) You need to balance the garbage collection frequency and performance to avoid data loss.

See all articles

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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function