search
HomeBackend DevelopmentPHP TutorialUse caution regarding require_once usage and relative directories in PHP
Use caution regarding require_once usage and relative directories in PHPJun 25, 2017 am 11:11 AM
oncephprequireaboutusagerelatively

wwwroot //The absolute path to the website root directory is: F:/wwwroot

-- folder_a // Folder A

  file_a_a.php
   file_a_b.php
   file_a_c.php

-- folder_b // Folder B

file_b_a.php
   file_b_b.php
   file_b_c.php

-- index.php

****************************************** ***********************

This directory hierarchy is already very clear:

wwwroot is the root directory, and below The index.php file and the two folders folder_a and folder_b

These two folders have three php files respectively

Let’s first look at the contents of the index.php file:

<?php
     require_once("folder_a/file_a_a.php");
     echo "文件folder_a_a.php被包含成功";
?>

Let’s take a look at the contents of the folder_a/folder_a_a.php file:

<?php
     require_once("../folder_b/file_b_a.php");
     $x = new X();
     $x.printInfo();
?>

Finally, let’s take a look at the contents of the folder_b/folder_b_a.php file:

<?php
     class X{
          function printInfo(){
               echo &#39;success;
          }
     }
?>

Yiju Tutorial Network >Php Tutorial>>FAQ >

Be careful about the usage of php require_once and relative directories

www.111cn.net Update: 2012-06-25 Editor: xiewen Source: Reprint

This article introduces the usage of require_once that everyone often encounters in PHP development. Friends in need can refer to it.

wwwroot //The absolute path to the website root directory is: F:/wwwroot

-- folder_a // Folder A

file_a_a.php

file_a_b. php

file_a_c.php

-- folder_b // Folder B

file_b_a.php

file_b_b.php

file_b_c.php

-- index.php

************************************ ****************************

This directory hierarchy is already very clear:

wwwroot is Under the root directory, there are the index.php file and two folders, folder_a and folder_b.

These two folders have 3 php files respectively.

Let’s first look at the contents of the index.php file:

The code is as follows Copy code

require_once("folder_a/file_a_a.php");

echo "The file folder_a_a.php is Contained successfully";

?>

Let’s look at the contents of the folder_a/folder_a_a.php file:

The code is as follows Copy the code

require_once("../folder_b/file_b_a.php");

$x = new X();

$x.printInfo ();

?>

Finally let’s take a look at the contents of the folder_b/folder_b_a.php file:

The code is as follows Copy the code

class X{

function printInfo(){

echo 'success;

}

}

?>

ok If I run floder_a/file_a_a.php

directly now, it will output: success

If I run index.php

under wwwroot, an error will be reported because the included file cannot be found:file_b_a.php

But if I run all require_once( ), add dirname(FILE).'/'

Then whether you run file_a_a.php or index.php, the output will be normal

****************** ************************************************

Problem:

The first time I used a relative path, so an error occurred when I included it repeatedly.

The second time I used an absolute path, so there was no error. But I still A little confused:

I first analyzed the following reasons for errors when using relative paths:

I run index.php, it can find the folder_a directory, and it can also find file_a_a.php in that directory. , so it copies the contents of folder_a/file_a_a.php to the first line of index.php (the line containing the statement), and then continues to run (that is, runs the included content), so at this time it is equal to In index.php, run require_once('../folder_b/file_b_a.php') in file_a_a.php; It will find this path file (file_b_a.php) based on the current location of index.php. Of course, it cannot be found, so It went wrong.

But isn't it the same when I use absolute paths? But why doesn't it go wrong? Maybe everyone is a little confused about this sentence, let me explain in detail (according to the running order of the program To explain).

The program runs index.php first (note that I added dirname(FILE) at this time, so the current path is absolute),

index.php runs the first sentence first Code: require_once(dirname(FILE).'/'.'folder_a/file_a_a.php');

dirname(FILE) is f:/wwwroot/, so the path contained in this code is:

f:/wwwroot/folder_a/file_a_a.php

This path is correct, so there is no problem, right?

ok The first step is completed correctly

Then It copies the code in file_a_a.php to this place in index.php:

and then continues to run: This is to run all the code in file_a_a.php in index.php, then we Let’s see what code it runs?

<?php
     require_once(dirname(FILE).&#39;/&#39;."../folder_b/file_b_a.php");
     $x = new X();
     $x.printInfo();
?>

对就是这些,需要注意的是,这些代码已经被复制到了index.php,也就是说,现在index.php的内容实际上就变成了:

<?php
     require_once(dirname(FILE).&#39;/&#39;."../folder_b/file_b_a.php");
     $x = new X();
     $x.printInfo();
     echo "文件folder_a_a.php被包含成功";
?>

我们来看个注意事项

假设有如下三个文件, c.php a.php b.php 对应的存放目录为:localhost/ localhost/ localhost/demo

c.php
require_once("a.php");
require_once("demo/b.php");
B::demo();a.php
class A
{
}

b.php的内容比较有意思,因为它自己要继承 CLASS A 所以自己把a.php也引入进去了

require_once("../a.php");
class B extends A
{
    public static function demo()
    {
    echo "xx";
    }
}

执行localhost/c.php 系统报错,报错信息如下
Warning: require_once(../a.php) [function.require-once]: failed to open stream: No such file or directory in F:wwwdemob.php on line 2
Fatal error: require_once() [function.require]: Failed opening required '../a.php' (include_path='.;C:php5pear') in F:wwwdemob.php on line 2但是,惊奇的发现,如果去掉b.php里面的require_once语句,执行正常,那么一定是require_once语句定义多了吗?原因就是Class A重定义了两次?可是不会啊。如果我只在c.php里面加require_once(‘a.php’);这条语句,哪怕我写两遍也是没错的,那到底是咋回事呢?
原因就是,b.php定义的目录和c.php执行文件的目录层级不一致,导致在c.php里面require_once语句有两条。使其相当于

require_once("a.php");
require_once("../a.php");
class B extends A
{
    public static function demo()
    {
    echo "xx";
    }
}
B::demo();

原因找到了,因为在c.php里面,其相对目录 “..”就是 c.php的上一层了,导致文件找不到报错。
所以,我们的结论是,在 PHP 里面,使用require_once的时候,存在不同层级关系,且有相对目录的使用那么一定要谨慎,小心。


require_once很简单用但在使用时大家尽量使用绝对路径了。

The above is the detailed content of Use caution regarding require_once usage and relative directories in PHP. For more information, please follow other related articles on the PHP Chinese website!

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怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace("&nbsp;","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

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

Hot Tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function