我有一个 PHP 项目,其结构如下:
--root
|--dr1
| |---dr2
| |--testclass.php
|--start.php
|--bootstrap.php
testclass.php 包含:
namespace dr1\dr2;
class testclass {
...
}
bootstrap.php 包含:
define('DIR_SEP', DIRECTORY_SEPARATOR);
define('ROOT', dirname(__FILE__) . DIR_SEP);
function __autoload($class)
{
$path = ROOT . str_replace('\\', DIR_SEP, $class);
$file = $path . '.php';
if( is_file($file) ) require_once($file);
}
spl_autoload_extensions('.php');
spl_autoload_register('__autoload');
和 start.php 包含:
$class = 'dr1\dr2\testclass.php';
$obj = new $class();
当我运行 start.php 时,我在第 5 行收到消息dr1\dr2\testclass.php
未找到start.php
。我不知道为什么。有人会帮忙吗?多谢。