我有以下目录结构:
/var/www/Project1/Project1.php
/var/www/Project1/User/UserProfile.php
Project1.php 内部:
<?php
namespace Project1;
set_include_path( __DIR__ );
spl_autoload_extensions('.php');
spl_autoload_register();
use User\UserProfile;
$u = new Avatar();
...
?>
在 UserProfile.php 中:
<?php
namespace Project1\User;
class Avatar{
}
...
?>
当我执行时,php Project1.php
我得到:
PHP 致命错误:spl_autoload9():无法加载 Class User\UserProfile
我没有看到问题。