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

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

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

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

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

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

A string is a sequence of characters, including letters, numbers, and symbols. This tutorial will learn how to calculate the number of vowels in a given string in PHP using different methods. The vowels in English are a, e, i, o, u, and they can be uppercase or lowercase. What is a vowel? Vowels are alphabetic characters that represent a specific pronunciation. There are five vowels in English, including uppercase and lowercase: a, e, i, o, u Example 1 Input: String = "Tutorialspoint" Output: 6 explain The vowels in the string "Tutorialspoint" are u, o, i, a, o, i. There are 6 yuan in total

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

What are the magic methods of PHP? PHP's magic methods include: 1.\_\_construct, used to initialize objects; 2.\_\_destruct, used to clean up resources; 3.\_\_call, handle non-existent method calls; 4.\_\_get, implement dynamic attribute access; 5.\_\_set, implement dynamic attribute settings. These methods are automatically called in certain situations, improving code flexibility and efficiency.

PHP and Python each have their own advantages, and choose according to project requirements. 1.PHP is suitable for web development, especially for rapid development and maintenance of websites. 2. Python is suitable for data science, machine learning and artificial intelligence, with concise syntax and suitable for beginners.
