$obj = new ../another/Class'
<?php
namespace TestA\TestB\TestC;
spl_autoload_register(function ($class) {
$path = str_replace('\\__', '\\..', $class);
// Затем используем realpath(), чтобы добраться до нужного файла...
});
$class = new __\__\TestClass();