获取PHP错误“;致命错误:require_once()无法打开required<;文件>&引用;

获取PHP错误“;致命错误:require_once()无法打开required<;文件>&引用;,php,Php,致命错误:require_once():在第1行的C:\xampp\htdocs\blog\static\index.php中打开所需的includes/header.php(include_path='C:\xampp\php\PEAR')失败 这是文件 <?php require_once('includes/header.php') ?> <title>Blog | Home </title> </head> <body>

致命错误:require_once():在第1行的C:\xampp\htdocs\blog\static\index.php中打开所需的includes/header.php(include_path='C:\xampp\php\PEAR')失败

这是文件

<?php require_once('includes/header.php') ?>
    <title>Blog | Home </title>
</head>
<body>
    <!-- container - wraps whole page -->
    <div class="container">
        <!-- navbar -->
        <?php include('includes/navbar.php') ?>

        <!-- Page content -->
        <div class="content">
            <h2 class="content-title">Recent Articles</h2>
            <hr>
            <!-- more content still to come here ... -->
        </div>
        <!-- // Page content -->

        <!-- footer -->
        <?php include('includes/footer.php') ?>

博客|主页
最近的文章


使用此标题

<?php  $docroot = $_SERVER['DOCUMENT_ROOT'];
require_once("$docroot/blog/static/includes/header.php");  ?>


文件
C:\xampp\htdocs\blog\static\includes\header.php是否存在?是的,它确实存在列出您指向的目录我打赌它不存在。如何列出所有目录并添加它们