search
Homephp教程php手册PHP require/include顺序详解

在大型的web项目中, include_path是一个模块化设计的根本中的根本(当然,现在也有很多基于autoload的设计, 这个不影响本文的探讨), 但是正是因为include_path, 经常会让我们遇到一些因为没有找到正确的文件而导致的看似"诡异"的问题.也就有了如下的疑问:include_path是怎么起作用的?如果有多个include_path顺序是怎么样的?什么情况下include_path不起作用?

今天, 我就全面的介绍下这个问题, 先从一个例子开始吧.如下的目录结构:

1.php  2.php 3.php

3.php在1.php中:

<?php
ini_set("include_path", ".:path_to_subdir");  
require("2.php");  
?>

而在2.php中:

<?php
require("3.php");  
?>

而在root目录下的3.php打印出"root", 在subdir目录下的3.php打印出"subdir";现在, 我的问题来了:

1. 当在root目录下运行1.php, 会得到什么输出?

2. 在subdir下运行上一级目录的1.php, 有会得到什么输出?

3. 当取消include_path中的当前目录path(也就是include_path="path_to_subdir"), 上面俩个问题又会是什么输出?

php中的include_path 

php在遇到require(_once)/include(_once)的指令的时候, 首先会做如下的判断:要包含的文件路径是绝对路径么? 如果是, 则直接包含, 并结束. 如果不是, 进入另外的逻辑(经过多次调用, 展开后进入_php_stream_fopen_with_path)寻找此文件接下来, 在_php_stream_fopen_with_path中, 会做如下判断: 

要包含的文件路径是相对路径么(形如./file, ../dir/file, 以下用"目录相对路径代替")? 如果是, 则跳过include_path的作用逻辑, 直接解析相对路径(随后单独介绍)会根据include_path,和当前执行文件的path组成一个待选的目录列表, 比如对于文章前面的例子来说, 会形成一个如下的待选列表:path_to_subdir:current_script_dir然后, 依次从待选列表头部开始, 根据default_dir_separator(本文的环境是":")取出待选列表中的一个路径, 然后把要包含的文件名附加在这个路径后面, 进行尝试. 如果成功包含, 则返回, 否则继续下一个待选路径. 

到现在为止, 我们已经可以回答我开头提出的3个问题了. 

1. 因为在root目录下执行, 所以在1.php中包含2.php的时候, include_path的第二个待选路径起了作用(path_to_subdir), 找到了path_to_subdir/2.php, 而在2.php包含3.php的时候, 当前工作目录是root下, 所以在包含3.php的时候, include_path的第一个待选路径"."(当前工作目录)下就找到的匹配的文件, 所以得到的输出是"root".

2. 同1, 只不过当前的路径是subdir, 所以得到的输出是"subdir". 

3. 因为没有了当前路径为include_path, 所以在root目录下运行的时候2.php中包含3.php的时候, 是path_to_subdir起了作用, 所以无论在root还是subdir都将得到"subdir"的输出. 而如果在2.php中清空include_path:

<?php
ini_set("include_path", &#39;&#39;);  
require("3.php");  
?>

那么将会是current_script_dir起作用, 而这个时候current_script_dir是2.php的路径, 所以还是会得到"subdir"的输出. 

目录相对路径:在使用目录相对路径的情况下, 相对路径的基点, 永远都是当前工作目录,为了说明在目录相对路径下的情况,我们再看个列子, 还是上面的目录结构, 只不过1.php变成了: 

<?php
ini_set("include_path", "/");  
require("./subdir/2.php");  
?>

2.php变成了: 

<?php
require("./3.php");  
?>

如果在root目录下执行, 2.php中寻找3.php将会在当前目录的相对路径下寻找, 所以得到的输出是"root", 而如果是在subdir下执行上一级目录的1.php(php -f ../1.php), 将会因为在subdir下找不到"./subdir/2.php"而异常退出. 

后记:1. 因为使用include_path和相对路径的情况下, 性能会和寻找的次数有关, 最坏的情况下, 如果你有10个include_path, 那么最多可能会重试11次才能找到要包含的文件, 所以, 在能使用绝对路径的情况下最好使用绝对路径. 

2. 因为目录相对路径的basedir, 永远都是当前工作路径, 如果要使用, 需要和实际部署路径相关, 所以实际使用的很少(当然, 也有借助chdir来完成的模块). 

3. 在模块化的系统设计中, 一般应该在模块内, 通过获取模块的部署路径(dirname(__file__), php5.3以后更是提供了__dir__常量)从而使用绝对路径.


文章地址:

转载随意^^请带上本文地址!

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
vue3+vite:src使用require动态导入图片报错怎么解决vue3+vite:src使用require动态导入图片报错怎么解决May 21, 2023 pm 03:16 PM

vue3+vite:src使用require动态导入图片报错和解决方法vue3+vite动态的导入多张图片vue3如果使用的是typescript开发,就会出现require引入图片报错,requireisnotdefined不能像使用vue2这样imgUrl:require(&rsquo;&hellip;/assets/test.png&rsquo;)导入,是因为typescript不支持require所以用import导入,下面介绍如何解决:使用awaitimport

php include和include_once有什么区别php include和include_once有什么区别Mar 22, 2023 am 10:38 AM

当我们在使用 PHP 编写网页时,有时我们需要在当前 PHP 文件中包含其他 PHP 文件中的代码。这时,就可以使用 include 或 include_once 函数来实现文件包含。那么,include 和 include_once 到底有什么区别呢?

require的用法有哪些require的用法有哪些Nov 27, 2023 am 10:03 AM

require用法:1、引入模块:在许多编程语言中,require用于引入外部模块或库,以便在程序中使用它们提供的功能。例如,在Ruby中,可以使用require来加载第三方库或模块;2、导入类或方法:在一些编程语言中,require用于导入特定的类或方法,以便在当前文件中使用它们;3、执行特定任务:在一些编程语言或框架中,require用于执行特定的任务或功能。

解决php标题中的fatal error: require(): Failed opening required 'data/tdk.php' (include_path='.;C:\php\pear')的步骤解决php标题中的fatal error: require(): Failed opening required 'data/tdk.php' (include_path='.;C:\php\pear')的步骤Nov 27, 2023 pm 12:51 PM

解决PHP标题中的fatalerror:require():Failedopeningrequired'data/tdk.php'(include_path='.;C:phppear')的步骤在使用PHP开发网站或应用程序时,我们经常会遇到各种错误。其中一个常见的错误是"fatalerror:require():Failed

使用线程同步打印数字的顺序使用线程同步打印数字的顺序Sep 22, 2023 pm 09:41 PM

在这里,我们将看到如何使用不同的线程按正确的顺序打印数字。在这里,我们将创建n个线程,然后对它们进行同步。思路是,第一个线程将打印1,然后第二个线程将打印2,依此类推。当一个线程尝试打印时,它将锁定资源,因此其他线程无法使用该部分。示例#include<pthread.h>#include<stdio.h>#include<stdlib.h>#include<unistd.h>pthread_mutex_tmutex=PTHREAD_MUTEX_I

PHP中require关键字的作用和使用方法详解PHP中require关键字的作用和使用方法详解Jun 28, 2023 pm 11:31 PM

PHP中require关键字的作用和使用方法详解在PHP开发中,require是一个非常常用的关键字。它的作用是将指定的文件包含进来,以供当前脚本使用。本文将详细讲解require关键字的作用和使用方法。一、require关键字的作用require关键字可以将一个文件的内容包含到当前脚本中。它通常用于包含一些必要的外部文件,比如库文件、配置文件等。使用req

解决php标题中的fatal error: require(): Failed opening required 'data/tdk.php'的步骤解决php标题中的fatal error: require(): Failed opening required 'data/tdk.php'的步骤Nov 27, 2023 am 10:41 AM

解决PHP标题中的FatalError:require():Failedopeningrequired'data/tdk.php'的步骤在开发和维护PHP网站时,我们经常会遇到各种错误和异常。其中一个常见的错误是"FatalError:require():Failedopeningrequired'data/tdk.php'"。

CSS3选择器优先级规则CSS3选择器优先级规则Feb 19, 2024 pm 02:51 PM

CSS3选择器优先级顺序在CSS中,选择器的优先级决定了哪个规则将应用于元素。当多个规则具有相同的优先级时,根据其出现的顺序进行应用。对于具有不同优先级的规则,CSS使用一个特定的算法来确定最终应用的规则。下面我们将介绍CSS3中选择器优先级的顺序,并提供具体的代码示例。在CSS中,选择器的优先级由以下因素决定:内联样式表(Inlinestyles):内联

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

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

MinGW - Minimalist GNU for Windows

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.

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment