Home Backend Development PHP Tutorial In-depth understanding of include/require in PHP

In-depth understanding of include/require in PHP

Jul 29, 2016 am 09:00 AM
include path php require

In-depth understanding of include/require in PHP

include
1. First search for the file according to the path of the loaded file. If it is just a file name, it will be searched according to the include_path
2. If the above two addresses are not found, the directory where the script file is located and the current working directory will be called
3. If it is not found at the end, a warning will be issued. This is different from require, which will issue a fatal error
4. If path is defined. Regardless of absolute path or relative path, include_path will be invalid

require
1. Same as include method, but different error handling methods
2. When the require file is not loaded, the script will stop executing.

include_path in php

php when encountering include or require
1. First determine whether it is the right path.
Yes->Load and end
No ->Enter another logic (after multiple calls, macro expansion into _php_stream_fopen_with_path) to find this file)

<code>更详细案例说明参阅鸟哥文章: 
</code>
Copy after login

http://www.laruence.com/2010/05/04/1450.html

Conclusion It is best to use absolute paths

The difference between include and require

include(): When

  1. include introduces a file, if an error is encountered, a warning will be given and the code below will continue to run.
  2. Read and evaluate every time when executing a file
  3. It is usually placed in the processing section of the process control
  4. The PHP script file only reads the files it contains when it reads the include() statement.
  5. include() is a conditional inclusion function

require():

  1. require When importing a file, if an error is encountered, a Fatal error will be given and the code below will stop running.
  2. The file is only processed once (in fact, the file content replaces the require() statement)
  3. Usually placed at the front of the PHP script program
  4. Before the PHP program is executed, it will first read the file introduced by the require() statement , making it part of the PHP script file.
  5. require() is an unconditional inclusion function
<code><span><span><?php</span><span>//变量$ok无论是何值,1.php都会被包含进来[在PHP程序执行前,就读入require()语句]</span><span>if</span>(<span>$ok</span>){
        <span>require</span><span>'1.php'</span>;
    }
    <span>//变量$ok为真,则包含文件2.php</span><span>if</span>(<span>$ok</span>){
      <span>include</span><span>'2.php'</span>;
    }
<span>?></span></span></code>
Copy after login

Conclusion

  • include is loaded when used
  • require is loaded at the beginning
  • _once suffix indicates that the loaded one is not loaded
  • If it is possible to execute it multiple times code, it is more efficient to use require()
  • If you read a different file each time you execute the code, or there is a loop that iterates through a set of files, use the include() statement
').addClass(' pre-numbering').hide(); $(this).addClass('has-numbering').parent().append($numbering); for (i = 1; i ').text(i)); }; $numbering.fadeIn(1700); }); });

The above has introduced an in-depth understanding of include/require in PHP, including aspects of it. I hope it will be helpful to friends who are interested in PHP tutorials.

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