我的github项目已导入c:/xampp/htdocs/project
,但它会为自动加载文件生成错误。它无法找到system.php
中的c:/xampp/php/pear/system.php
文件。当我将system.php
文件移动到htdocs
目录时,我收到一个类未找到错误。错误发生在自动加载文件中。
<?php
require_once($_SERVER['DOCUMENT_ROOT'] . '/system.php'); //System Settings
require_once('global.php'); //Global methods and variables
//Auto loading of classes
spl_autoload_register(function ($class) {
include_once($_SERVER['DOCUMENT_ROOT'] . '/' . str_replace('\\', '/', $class) . 'Class.php');
});
答案 0 :(得分:0)
我今天遇到了类似的问题。看起来使用文件名“system.php”存在问题。将它重命名为其他东西解决了我的问题。