次のディレクトリ構造があります:
/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(): クラス User\UserProfile を読み込めませんでした
問題がわかりません。