


Summary of PHP's include file functions require and include paths_PHP tutorial
Summary of PHP’s include file function require and include paths
1 Absolute path, relative path and undetermined path
Relative path
Relative paths refer to paths starting with ., such as
./a/a.php (relative to the current directory)
../common.inc.php (relative to the upper-level directory),
Absolute path
The absolute path is a path starting with / or a drive letter similar to C:/ under Windows. The full path can uniquely determine the final address of the file without any reference path. For example
/apache/wwwroot/site/a/a.php
c:/wwwroot/site/a/a.php
Undetermined path
Any path that does not start with . or /, nor does it start with drive letter:/ under Windows, such as
a/a.php
common.inc.php,
At first I thought this was also a relative path, but in PHP’s include/require mechanism, this type of path is handled completely differently from relative paths starting with . require './a.php' and require 'a.php' are different!
Let’s analyze the processing methods of these three types of include paths: First, remember a conclusion: if the include path is a relative path or an absolute path, it will not go to the include_path (include_path environment variable defined in php.ini, or in the program Use set_include_path(...) to find the file.
Test environment description
Note: The following discussion and conclusion are based on this environment: Assume A=http://www.xxx.com/app/test/a.php. It is emphasized again that the following discussion is for the case of direct access to A.
2. Relative path:
Relative paths require a reference directory to determine the final path of the file. In include parsing, no matter how many levels of inclusion are nested, this reference directory is the directory where the program execution entry file is located.
Example 1
Define require './b/b.php' in A; // Then B=[SITE]/app/test/b/b.php
Define require './c.php'; // in B, then C=[SITE]/app/test/c.php is not [SITE]/app/test/b/c.php
Example 2
Define require './b/b.php' in A; // Then B=[SITE]/app/test/b/b.php
Define require '../c.php'; // in B, then C=[SITE]/app/c.php is not [SITE]/app/test/c.php
Example 3
Define require '../b.php' in A; //Then B=[SITE]/app/b.php
Define require '../c.php'; //then C=[SITE]/app/c.php is not [SITE]/c.php
Example 4:
Define require '../b.php'; // in A, then B=[SITE]/app/b.php
Define require './c/c.php'; // then C=[SITE]/app/test/c/c.php is not [SITE]/app/c/c.php
Example 5
Define require '../inc/b.php' in A; // Then B=[SITE]/app/inc/b.php
Define require './c/c.php' in B; // Then C is still =[SITE]/app/test/c/c.php, not [SITE]/app/inc/c/c.php
Example 6
Define require '../inc/b.php' in A; // Then B=[SITE]/app/inc/b.php
Define require './c.php'; // in B, then C=[SITE]/app/test/c.php is not [SITE]/app/inc/c.php
3. Absolute path
The absolute path is relatively simple and less likely to cause confusion and error. The require|inclue one corresponds to the file on the disk.
require '/wwwroot/xxx.com/app/test/b.php'; // In Linux
require 'c:/wwwroot/xxx.com/app/test/b.php'; // in windows
dirname(__FILE__) is also calculated as a directory in the form of an absolute path, but it should be noted that __FILE__ is a Magic constants, which is equal to the absolute path of the php file where this statement is written at any time, so dirname( __FILE__) always points to the absolute path of the php file where this statement is written, and has nothing to do with whether the file is included and used by other files.
Example 1
Define require '../b.php' in A; // Then B=[SITE]/app/b.php
Define in B require dirname(__FILE__).'/c.php'; // Then B=[SITE]/app/c.php
Example 2
Define require '../inc/b.php' in A; // Then B=[SITE]/app/inc/b.php
Defined in B require dirname(__FILE__).'/c.php'; // Then B=[SITE]/app/inc/c.php is always in the same directory as B
Conclusion: Whether B is included and used by A, or directly accessed
If B requires dirname(__FILE__).'/c.php'; // it will always refer to the c.php file in the same directory as B;
If B requires dirname(__FILE__).'/../c.php'; // it will always refer to the c.php file in the parent directory of the directory where the B file is located;
If B requires dirname(__FILE__).'/c/c.php'; // it will always refer to the c.php file in the c subdirectory of the directory where the B file is located;
4. Undetermined path
First, use the include directories defined in include_path to splice [undetermined path] one by one. If an existing file is found, the include will exit successfully. If not found, use the directory where the php file that executes the require statement is located to splice [undetermined path] ] to search for the file. If the file exists, it will exit successfully. Otherwise, it means the file does not exist and an error will occur. Undetermined paths are easy to confuse and are not recommended.
5. Solution
Since the "reference directory" in "relative path" is the directory where the execution entry file is located, the "undetermined" path is also easier to confuse, so the best solution is to use an "absolute path"; for example, the content of b.php As shown below, no matter where b.php is required, the path of b.php is used as a reference to require c.php
$dir = dirname(__FILE__);
require($dir . '../c.php');
Or define a general function import.php, set it to "automatically import files in advance", and make the following configuration in php.ini
Change the configuration item (required) auto_prepend_file = "C:xampphtdocsauto_prepend_file.php"
Change configuration items (optional) allow_url_include = On
The content of import.php is as follows
Function import($path) {
$old_dir = getcwd(); // Save the original "reference directory"
Chdir(dirname(__FILE__)); // Change the "reference directory" to the absolute path of the current script
require_once($path);
chdir($old_dir); // Change back to the original "reference directory"
}
In this way, you can use the import() function to require the file. No matter how many levels of "reference directories" it contains, it is the current file

PHP is mainly procedural programming, but also supports object-oriented programming (OOP); Python supports a variety of paradigms, including OOP, functional and procedural programming. PHP is suitable for web development, and Python is suitable for a variety of applications such as data analysis and machine learning.

PHP originated in 1994 and was developed by RasmusLerdorf. It was originally used to track website visitors and gradually evolved into a server-side scripting language and was widely used in web development. Python was developed by Guidovan Rossum in the late 1980s and was first released in 1991. It emphasizes code readability and simplicity, and is suitable for scientific computing, data analysis and other fields.

PHP is suitable for web development and rapid prototyping, and Python is suitable for data science and machine learning. 1.PHP is used for dynamic web development, with simple syntax and suitable for rapid development. 2. Python has concise syntax, is suitable for multiple fields, and has a strong library ecosystem.

PHP remains important in the modernization process because it supports a large number of websites and applications and adapts to development needs through frameworks. 1.PHP7 improves performance and introduces new features. 2. Modern frameworks such as Laravel, Symfony and CodeIgniter simplify development and improve code quality. 3. Performance optimization and best practices further improve application efficiency.

PHPhassignificantlyimpactedwebdevelopmentandextendsbeyondit.1)ItpowersmajorplatformslikeWordPressandexcelsindatabaseinteractions.2)PHP'sadaptabilityallowsittoscaleforlargeapplicationsusingframeworkslikeLaravel.3)Beyondweb,PHPisusedincommand-linescrip

PHP type prompts to improve code quality and readability. 1) Scalar type tips: Since PHP7.0, basic data types are allowed to be specified in function parameters, such as int, float, etc. 2) Return type prompt: Ensure the consistency of the function return value type. 3) Union type prompt: Since PHP8.0, multiple types are allowed to be specified in function parameters or return values. 4) Nullable type prompt: Allows to include null values and handle functions that may return null values.

In PHP, use the clone keyword to create a copy of the object and customize the cloning behavior through the \_\_clone magic method. 1. Use the clone keyword to make a shallow copy, cloning the object's properties but not the object's properties. 2. The \_\_clone method can deeply copy nested objects to avoid shallow copying problems. 3. Pay attention to avoid circular references and performance problems in cloning, and optimize cloning operations to improve efficiency.

PHP is suitable for web development and content management systems, and Python is suitable for data science, machine learning and automation scripts. 1.PHP performs well in building fast and scalable websites and applications and is commonly used in CMS such as WordPress. 2. Python has performed outstandingly in the fields of data science and machine learning, with rich libraries such as NumPy and TensorFlow.


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

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

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

WebStorm Mac version
Useful JavaScript development tools

Dreamweaver Mac version
Visual web development tools

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