在 PHP 中的 windows 上访问 root/htdocs 之外的文件

Access a file outside of root/htdocs on windows in PHP

如何访问 windows 上 htdocs 文件夹之外的文件? 我的根 (htdocs) 文件夹外有一个配置文件,我想在其中保存数据库连接的配置,但是当我调用它时,它说找不到文件。

我目前在以下目录中: xampp\htdocs\includes

我的配置文件位于: \xampp\inc

我试图回显路径,但我没有得到任何输出

echo realpath('../..inc/config.php') . PHP_EOL;

if (!file_exists('../../inc/config.php')) {
          throw new Exception("No config file found!");
        }

我让它与

一起工作
$_SERVER['DOCUMENT_ROOT']) . '/inc/config.php'