警告:include(../config/config.php) [function.include]:无法在 PHP 中打开流

Man*_*noj 0 php

我的 PHP 文件出现以下错误。

Warning: include(../config/config.php) [function.include]: failed to open stream: No such file or directory in C:\xampp\htdocs\my-proj\functions\function.php on line 2

让我描述一下我的文件夹结构

  1. ROOT 文件夹 /index.php
  2. 函数/function.php
  3. 配置/config.php
  4. 注册/注册.php

现在,如果我使用绝对路径,那么它会在 signup.php 中给出相同的错误,如果我使用相对路径,那么它会在 index.php 中给出这个错误

任何帮助,将不胜感激。

mac*_*ack 5

include("$_SERVER[DOCUMENT_ROOT]/config/config.php");
Run Code Online (Sandbox Code Playgroud)