In-depth understanding of include/require in PHP
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>
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
- include introduces a file, if an error is encountered, a warning will be given and the code below will continue to run.
- Read and evaluate every time when executing a file
- It is usually placed in the processing section of the process control
- The PHP script file only reads the files it contains when it reads the include() statement.
- include() is a conditional inclusion function
require():
- require When importing a file, if an error is encountered, a Fatal error will be given and the code below will stop running.
- The file is only processed once (in fact, the file content replaces the require() statement)
- Usually placed at the front of the PHP script program
- 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.
- 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>
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
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.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

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

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

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

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

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

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

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

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