fork download
  1. <?php
  2.  
  3. namespace TestA\TestB\TestC;
  4.  
  5. spl_autoload_register(function ($class) {
  6. $path = str_replace('\\__', '\\..', $class);
  7. // Затем используем realpath(), чтобы добраться до нужного файла
  8. var_dump($path);
  9. });
  10.  
  11. $class = new __\__\TestClass();
  12.  
Runtime error #stdin #stdout #stderr 0.02s 52432KB
stdin
Standard input is empty
stdout
string(33) "TestA\TestB\TestC\..\..\TestClass"
stderr
PHP Fatal error:  Class 'TestA\TestB\TestC\__\__\TestClass' not found in /home/NzQkRQ/prog.php on line 11