search
HomeBackend DevelopmentPHP TutorialWhat you should know about the correct usage of require() file inclusion in PHP_PHP Tutorial

When I looked at some PHP framework source codes in the past, it was strange that dirname (__FILE__) was used to piece together the file path when the file was included. I didn’t know what the benefits of doing so were, but I finally discovered the reason.

Let’s look at a simple example:

There are three php files a, b, c. a.php is in the root directory of the website, b.php is in the b folder - b/b.php, and c.php is in the c folder - c/c.php. Some confusion? It’s clear when you look at the picture:

Both a.php and b.php include c.php, and finally c.php includes a php file in the d folder - d/d.php.

Let’s take a look at a.php first:

<span  1</span> <?<span php 
</span><span  2</span> 
<span  3</span>     <span $file_name</span> = 'a.php'<span ;
</span><span  4</span> 
<span  5</span>     <span echo</span> "this is a.php"<span ;
</span><span  6</span>     <span echo</span> "<hr>"<span ;
</span><span  7</span> 
<span  8</span>     <span require</span>('c/c.php'<span );
</span><span  9</span> 
<span 10</span>  ?>

This is a very simple code. After printing, it contains c/c.php. Next, we need to look at c/c.php:

<?<span php 
    </span><span $c_file_name</span> = 'c.php'<span ;

    </span><span echo</span> 'this is c.php, is required by ' . <span $file_name</span><span ;
    </span><span echo</span> "<hr>"<span ;

    </span><span require</span>('../d/d.php'<span );
 </span>?>

Print output "this is c.php, is required by a.php", $file_name is a variable defined in a.php. At the end, d.php is included. Because the d folder is one layer above the current c.php file, according to common sense, we will write the path as "../d/d.php" as a matter of course. But unfortunately, an error will be reported. The reason is that when you include other files in an included file such as c.php, the path is relative to the outermost parent file, that is, relative to a.php, which can be understood as because you are included by me. , so you have to rely on me. It seems very mysterious, but the principle is actually very simple: you can think of require('c/c.php'); as the code in the c/c.php file, so that our a.php can look like this:

<?<span php 
    </span><span $file_name</span> = 'a.php'<span ;

    </span><span echo</span> "this is a.php"<span ;
    </span><span echo</span> "<hr>"<span ;

    </span><span //</span><span  require('c/c.php');</span>
    <span $c_file_name</span> = 'c.php'<span ;

    </span><span echo</span> 'this is c.php, is required by ' . <span $file_name</span><span ;
    </span><span echo</span> "<hr>"<span ;

    </span><span require</span>('../d/d.php'<span );
 </span>?>

At this point, you can see that when we want to include the d/d.php file, is the path just now wrong? Because now we are in the a.php code, we are relative to the a.php file, of course, the path should be require('d/d.php'); We modify the code as follows:

<?<span php 
    </span><span $file_name</span> = 'a.php'<span ;

    </span><span echo</span> "this is a.php"<span ;
    </span><span echo</span> "<hr>"<span ;

    </span><span //</span><span  require('c/c.php');</span>
    <span $c_file_name</span> = 'c.php'<span ;

    </span><span echo</span> 'this is c.php, is required by ' . <span $file_name</span><span ;
    </span><span echo</span> "<hr>"<span ;

    </span><span require</span>('d/d.php'<span );
 </span>?>

At this point, you haven’t understood the meaning yet, so you need to look down. Let’s look at b/b.php:

<?<span php 
    </span><span $file_name</span> = 'b.php'<span ;

    </span><span echo</span> "this is b.php"<span ;
    </span><span echo</span> "<hr>"<span ;
    
    </span><span require</span>('../c/c.php'<span );
 </span>?>

No need to explain, there is no problem, but when you replace require('../c/c.php'); with the code in c/c.php, you will find the problem , note that we have just modified the code in c/c.php and changed require('../d/d.php'); to require('d/d.php'); See what is included below Code:

<?<span php 
    </span><span $file_name</span> = 'b.php'<span ;

    </span><span echo</span> "this is b.php"<span ;
    </span><span echo</span> "<hr>"<span ;
    
    </span><span //</span><span  require('../c/c.php');</span>
    <span $c_file_name</span> = 'c.php'<span ;

    </span><span echo</span> 'this is c.php, is required by ' . <span $file_name</span><span ;
    </span><span echo</span> "<hr>"<span ;

    </span><span require</span>('d/d.php'<span );
 </span>?>

So, compared to b/b.php, the path of require('d/d.php'); is wrong, it should be require('../d/d.php');. You go back and modify the require path in c/c.php, but it’s wrong. After you modify it, b/b.php can run normally, but a/a.php can’t. Is it true that they share c/c? .php, it affects the whole body, what should I do?

At this time, we return to the dirname(__FILE__) mentioned at the beginning of the article. This is a good thing and can completely solve the above problems. Using it, you don't need to worry about which file contains your file and which path it is under. You don't need to worry about the level of the parent file, because dirname(__FILE__) can specify the path relative to the current file. In other words, we need to change the require path in our c/c.php to:

<?<span php 
    </span><span $c_file_name</span> = 'c.php'<span ;

    </span><span echo</span> 'this is c.php, is required by ' . <span $file_name</span><span ;
    </span><span echo</span> "<hr>"<span ;

    </span><span require</span>(<span dirname</span>(<span __FILE__</span>) . '/../d/d.php'<span );
 </span>?>

Here, we only need to use c/c.php as a reference. Compared to it, d/d.php is at the upper level. In this way, there is only one standard, and that is, I shall prevail. Whether you include me or he includes me, I only use myself as the criterion, and the files I want to include are only relative to myself.

For fellow practitioners who don’t understand dirname(__FILE__), please google it, it’s very simple.

Okay, this ends the PHP technology sharing. If you have any questions or errors, please leave a message. By the way, this is my first standard technical blog post. The first article is hydrology, the second article is quasi-technical, and today I finally wrote a technical article, Ou Ye.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/738506.htmlTechArticleWhen I looked at some PHP framework source codes in the past, it was strange that dirname(__FILE__) was used when including files. Piecing together the file paths, I didn’t know what the benefits were, but I finally found out...
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
Vue.js与ASP.NET的结合,实现Web应用的性能优化和扩展的技巧和建议Vue.js与ASP.NET的结合,实现Web应用的性能优化和扩展的技巧和建议Jul 29, 2023 pm 05:19 PM

Vue.js与ASP.NET的结合,实现Web应用的性能优化和扩展的技巧和建议随着Web应用的快速发展,性能优化成为开发者不可或缺的重要任务。Vue.js作为一款流行的前端框架,与ASP.NET的结合可以帮助我们实现更好的性能优化和扩展。本文将会介绍一些技巧和建议,并提供一些代码示例。一、减少HTTP请求HTTP请求的数量直接影响着Web应用的加载速度。通过

生成式AI将在十个方面改变软件开发生成式AI将在十个方面改变软件开发Mar 11, 2024 pm 12:10 PM

译者|陈峻审校|重楼上个世纪90年代,当人们提起软件编程时,通常意味着选择一个编辑器,将代码检入CVS或SVN代码库,然后将代码编译成可执行文件。与之对应的Eclipse和VisualStudio等集成开发环境(IDE)可以将编程、开发、文档、构建、测试、部署等步骤纳入到一个完整的软件开发生命周期(SDLC)中,从而提高了开发人员的工作效率。近年来,流行的云计算和DevSecOps自动化工具提升了开发者的综合能力,使得更多的企业能够更加轻松地开发、部署和维护软件应用。如今,生成式AI作为下一代开

ASP.NET程序中的MySQL连接池使用及优化技巧ASP.NET程序中的MySQL连接池使用及优化技巧Jun 30, 2023 pm 11:54 PM

如何在ASP.NET程序中正确使用和优化MySQL连接池?引言:MySQL是一种广泛使用的数据库管理系统,它具有高性能、可靠性和易用性的特点。在ASP.NET开发中,使用MySQL数据库进行数据存储是常见的需求。为了提高数据库连接的效率和性能,我们需要正确地使用和优化MySQL连接池。本文将介绍在ASP.NET程序中如何正确使用和优化MySQL连接池的方法。

如何在ASP.NET程序中重连MySQL连接?如何在ASP.NET程序中重连MySQL连接?Jun 29, 2023 pm 02:21 PM

如何在ASP.NET程序中重连MySQL连接?在ASP.NET开发中,使用MySQL数据库是非常常见的。然而,由于网络或数据库服务器的原因,有时会导致数据库连接中断或超时。在这种情况下,为了保证程序的稳定性和可靠性,我们需要在连接断开后重新建立连接。本文将介绍如何在ASP.NET程序中实现重连MySQL连接的方法。引用必要的命名空间首先,在代码文件的头部引用

Vue.js与ASP.NET的结合,实现企业级应用的开发和部署Vue.js与ASP.NET的结合,实现企业级应用的开发和部署Jul 29, 2023 pm 02:37 PM

Vue.js与ASP.NET的结合,实现企业级应用的开发和部署在当今快速发展的互联网技术领域,企业级应用的开发和部署变得越来越重要。Vue.js和ASP.NET是两个在前端和后端开发中广泛使用的技术,将它们结合起来可以为企业级应用的开发和部署带来诸多优势。本文将通过代码示例介绍如何使用Vue.js和ASP.NET进行企业级应用的开发和部署。首先,我们需要安装

如何在ASP.NET程序中正确配置和使用MySQL连接池?如何在ASP.NET程序中正确配置和使用MySQL连接池?Jun 29, 2023 pm 12:56 PM

如何在ASP.NET程序中正确配置和使用MySQL连接池?随着互联网的发展和数据量的增大,对数据库的访问和连接需求也在不断增加。为了提高数据库的性能和稳定性,连接池成为了一个必不可少的技术。本文主要介绍如何在ASP.NET程序中正确配置和使用MySQL连接池,以提高数据库的效率和响应速度。一、连接池的概念和作用连接池是一种重复使用数据库连接的技术,在程序初始

aspnet有哪些内置对象aspnet有哪些内置对象Nov 21, 2023 pm 02:59 PM

ASP.NET中的内置对象有“Request”、“Response”、“Session”、“Server”、“Application”、 “HttpContext”、“Cache”、“Trace”、“Cookie”和“Server.MapPath”:1、Request,表示客户端发出的HTTP请求;2、Response:表示Web服务器返回给客户端的HTTP响应等等。

在Linux上使用Visual Studio进行ASP.NET开发的推荐配置在Linux上使用Visual Studio进行ASP.NET开发的推荐配置Jul 06, 2023 pm 08:45 PM

在Linux上使用VisualStudio进行ASP.NET开发的推荐配置概述:随着开源软件的发展和Linux操作系统的普及,越来越多的开发者开始在Linux上进行ASP.NET开发。而作为一款功能强大的开发工具,VisualStudio在Windows平台上一直占据着主导地位。本文将介绍如何在Linux上配置VisualStudio来进行ASP.NE

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 Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)