PHP没有正确检测类

时间:2018-01-01 17:55:36

标签: php

由于某种原因,未检测到指定目录中的类文件。 我不确定这里的问题是什么。任何人都可以为我提亮吗?

代码:

<?php

ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);

class main
{

  public static
         $test;
}

foreach(glob($_SERVER['DOCUMENT_ROOT'].'/engine/*.php') as $file) {
  include($file);

}


main::$test = new Test();
 ?>

正如您所看到的,我正在尝试包含/engine.php/*

中的所有php文件

项目文件结构: http://prntscr.com/hutqyo

但我收到了错误

  

致命错误:未捕获错误:在C:\ xampp \ htdocs \ includes \ loader.php中找不到类'测试':23堆栈跟踪:#0 {main}抛出C:\ xampp \ htdocs \ includes \ loader第23行的.php

这是我的test.class.php代码,其中还没有很多。因为我还在研究这个当前的问题:

<title>test</title>


    <?php

    class Test
    {

      function getIP(){

      }

    }
     ?>

感谢任何可能帮助我找到解决方案的人!

0 个答案:

没有答案