0

包含的文件(在包含列表中找到)找不到类“配置”

错误在哪里?我找不到问题出在哪里。

<?php

    define(DS,DIRECTORY_SEPARATOR);

    final class kernel
    {           
        static private function classLoader($className)
        {                                   
            include 'project'.DS.'system'.DS.$className.'.php';  
        }

        static public function execute()
        {
            spl_autoload_register('self::classLoader');
            $config = new config;  
        } 
    }

?>

config.php 数据:

<?php

    class config
    {     
        static public function settings()
        {
           return 'test';  
        }
    }

?>
4

1 回答 1

0

问题解决了。

我的错。FTP客户端显示文件,但很清楚。缓存副本使用 PHP 代码。

于 2013-05-24T20:04:24.787 回答